Skip to content

Commit

Permalink
MTN apply pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rodolakis committed Jun 12, 2024
1 parent 3768e68 commit 9cf1b15
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions mdaviz/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,18 @@
from .mainwindow import MainWindow
import argparse


def gui():
"""Display the main window"""


app = QtWidgets.QApplication(sys.argv)
main_window = MainWindow()
main_window.setStatus(
f"Application started ..."
)
main_window.setStatus("Application started ...")
main_window.show()
sys.exit(app.exec())


def command_line_interface():


from . import __version__

doc = __doc__.strip().splitlines()[0]
Expand Down Expand Up @@ -61,7 +57,6 @@ def command_line_interface():


def main(): # for future command-line options

global logger

options = command_line_interface()
Expand Down

0 comments on commit 9cf1b15

Please sign in to comment.