diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2019-06-17 14:05:32 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2019-06-17 14:05:32 +0200 |
commit | 14262a97c7697a34430379ddbf1d6f5b12ef729f (patch) | |
tree | 236692e05c276577ac2744a6af94c109bbbbe421 /src | |
parent | d10f88b9e6119d223b6712eb0eb4f1365cf6c66d (diff) |
Don't load a file not in the repo at startup
Diffstat (limited to 'src')
-rw-r--r-- | src/main.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.py b/src/main.py index ce3a9ff..f04f376 100644 --- a/src/main.py +++ b/src/main.py @@ -5,8 +5,7 @@ from PyQt5.QtCore import * import ui, phys, file -#system = phys.System() -system = file.open_system("4.woz") +system = phys.System() app = QApplication(sys.argv) win = ui.MainWindow(system) |