From 72f6f9a47a55fb1bb3aec6c238906d80888f0549 Mon Sep 17 00:00:00 2001 From: RumovZ Date: Tue, 28 Sep 2021 11:48:35 +0200 Subject: [PATCH] Tweak comment Co-authored-by: Damien Elmes --- qt/aqt/browser/table/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/aqt/browser/table/model.py b/qt/aqt/browser/table/model.py index 5cc81f027..96be01121 100644 --- a/qt/aqt/browser/table/model.py +++ b/qt/aqt/browser/table/model.py @@ -80,7 +80,7 @@ class DataModel(QAbstractTableModel): self, index: QModelIndex, item: ItemId, old_row: Optional[CellRow] ) -> CellRow: """Fetch a row from the backend, add it to the cache and return it. - Thereby, handle callbacks if the row is being deleted or restored. + Then fire callbacks if the row is being deleted or restored. """ new_row = self._fetch_row_from_backend(item) # row state has changed if existence of cached and fetched counterparts differ