diff options
author | Cristián Maureira-Fredes <[email protected]> | 2023-04-05 17:18:08 +0200 |
---|---|---|
committer | Cristian Maureira-Fredes <[email protected]> | 2023-04-05 20:03:22 +0000 |
commit | e3c22d12f3f91098042f3f09a75093addbd5bd80 (patch) | |
tree | 0b246ad62217d05cc123c370f3254e58d8946789 /examples/sql | |
parent | 23cc8b6f01205567904300c494854f0bbaad11e0 (diff) |
examples: remove unused imports
Change-Id: I88a7bb2fe91abcfdef6e6014b088d08c4e613893
Pick-to: 6.5
Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'examples/sql')
-rw-r--r-- | examples/sql/books/bookwindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sql/books/bookwindow.py b/examples/sql/books/bookwindow.py index 0eb5fecad..4acb63d44 100644 --- a/examples/sql/books/bookwindow.py +++ b/examples/sql/books/bookwindow.py @@ -75,7 +75,7 @@ class BookWindow(QMainWindow, Ui_BookWindow): self.bookTable.setCurrentIndex(model.index(0, 0)) self.create_menubar() - def showError(err): + def showError(self, err): QMessageBox.critical(self, "Unable to initialize Database", f"Error initializing database: {err.text()}") |