Skip to content

Commit

Permalink
Merge pull request #27 from bhandeland/master
Browse files Browse the repository at this point in the history
Fix broken import
  • Loading branch information
mherrmann authored Jun 12, 2019
2 parents dffbaef + 02f4423 commit 4ae296d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from fbs_runtime.application_context import ApplicationContext
from fbs_runtime.application_context.PyQt5 import ApplicationContext
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QWidget, QLabel, QPushButton, QVBoxLayout

Expand Down Expand Up @@ -28,4 +28,4 @@ def _get_quote():
window = MainWindow()
window.show()
exit_code = appctxt.app.exec_()
sys.exit(exit_code)
sys.exit(exit_code)

0 comments on commit 4ae296d

Please sign in to comment.