Skip to content

Commit

Permalink
PyQt5->6: Update Exec function name
Browse files Browse the repository at this point in the history
  • Loading branch information
ToveRumar committed Apr 24, 2024
1 parent d4d16ba commit 9ea54ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/aideck/fpv.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,4 +285,4 @@ def closeEvent(self, event):
appQt = QtWidgets.QApplication(sys.argv)
win = MainWindow(URI)
win.show()
appQt.exec_()
appQt.exec()
2 changes: 1 addition & 1 deletion examples/multiranger/multiranger_pointcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,4 +361,4 @@ def set_measurement(self, measurements):
appQt = QtWidgets.QApplication(sys.argv)
win = MainWindow(URI)
win.show()
appQt.exec_()
appQt.exec()

0 comments on commit 9ea54ea

Please sign in to comment.