Skip to content

Commit 7e381e8

Browse files
committed
Rename PDFPageSelectorApp to MainApp for consistency in class naming
1 parent 7698d71 commit 7e381e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def update_app():
306306
QMessageBox.warning(None, "Update Error", f"Could not check for updates:\n{str(e)}")
307307

308308

309-
class PDFPageSelectorApp(QMainWindow):
309+
class MainApp(QMainWindow):
310310
def __init__(self):
311311
super().__init__()
312312
self.input_path = None
@@ -684,6 +684,6 @@ def _ensure_output_folder(self):
684684
velopack.App().run() # type: ignore[attr-defined]
685685

686686
app = QApplication(sys.argv)
687-
window = PDFPageSelectorApp()
687+
window = MainApp()
688688
window.show()
689689
sys.exit(app.exec())

0 commit comments

Comments
 (0)