Skip to content

Commit

Permalink
refactor: package structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ycatsh committed Nov 19, 2024
1 parent d704200 commit 27bce2d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from cli.commands import ConnorCLI
from .commands import ConnorCLI


def main():
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from cli.commands.command import ConnorCLI
from .command import ConnorCLI
2 changes: 1 addition & 1 deletion gui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from PyQt6.QtWidgets import QApplication

from gui.views import ConnorGUI
from .views import ConnorGUI


def main():
Expand Down
2 changes: 1 addition & 1 deletion gui/views/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from gui.views.organizer import ConnorGUI
from .organizer import ConnorGUI

0 comments on commit 27bce2d

Please sign in to comment.