From c64de639a55a6b49eab178373a856cff17b4da25 Mon Sep 17 00:00:00 2001 From: Garrett Bates <gbates@passcal.nmt.edu> Date: Tue, 29 Jun 2021 09:34:07 -0600 Subject: [PATCH] Reorganized import statements. --- sohstationviewer.py | 2 ++ sohstationviewer/view/calendardialog.py | 1 + sohstationviewer/view/mainwindow.py | 2 ++ 3 files changed, 5 insertions(+) diff --git a/sohstationviewer.py b/sohstationviewer.py index 06924283a..db43d6719 100644 --- a/sohstationviewer.py +++ b/sohstationviewer.py @@ -1,5 +1,7 @@ import sys + from PySide2 import QtWidgets + from sohstationviewer.view.mainwindow import MainWindow diff --git a/sohstationviewer/view/calendardialog.py b/sohstationviewer/view/calendardialog.py index b5c839fa2..0303bce3a 100644 --- a/sohstationviewer/view/calendardialog.py +++ b/sohstationviewer/view/calendardialog.py @@ -1,4 +1,5 @@ from PySide2 import QtWidgets + from sohstationviewer.view.ui.calendar_ui import Ui_CalendarDialog diff --git a/sohstationviewer/view/mainwindow.py b/sohstationviewer/view/mainwindow.py index ecb8c98f7..a1a2fe96f 100755 --- a/sohstationviewer/view/mainwindow.py +++ b/sohstationviewer/view/mainwindow.py @@ -1,5 +1,7 @@ import pathlib + from PySide2 import QtCore, QtGui, QtWidgets + from sohstationviewer.view.ui.main_ui import Ui_MainWindow from sohstationviewer.view.calendardialog import CalendarDialog from sohstationviewer.view.calendarwidget import CalendarWidget -- GitLab