From b0abb22f079a2ed1fcdc5a598a73545c533eb9fc Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 4 Nov 2022 09:37:15 +0100 Subject: [PATCH] [minor] small bugfix/removed debug output --- survBotGUI.py | 3 +-- survBotGUI.sh | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/survBotGUI.py b/survBotGUI.py index bcef8e6..0c53b4d 100755 --- a/survBotGUI.py +++ b/survBotGUI.py @@ -177,7 +177,6 @@ class MainWindow(QtWidgets.QMainWindow): An event filter that stores last mouse position if an event is raised by the table. All events are passed to the parent class of the Mainwindow afterwards. """ - print(object, event) if hasattr(event, 'pos'): self.last_mouse_loc = event.pos() return super(QtWidgets.QMainWindow, self).eventFilter(object, event) @@ -466,4 +465,4 @@ if __name__ == '__main__': app = QtWidgets.QApplication([]) window = MainWindow(parameters=parameters) window.showMaximized() - sys.exit(app.exec_()) \ No newline at end of file + sys.exit(app.exec_()) diff --git a/survBotGUI.sh b/survBotGUI.sh index 535d183..982f9e1 100755 --- a/survBotGUI.sh +++ b/survBotGUI.sh @@ -6,9 +6,9 @@ ulimit -s 8192 #$ -pe smp 1 ##$ -q "*@minos15" -export PYTHONPATH="$PYTHONPATH:/home/marcel/git/code_base" +export PYTHONPATH="$PYTHONPATH:/home/marcel/git/" source /opt/anaconda3/etc/profile.d/conda.sh conda activate py37 -python /home/marcel/git/code_base/station_surveillance_bot/survBotGUI.py +python /home/marcel/git/survBot/survBotGUI.py