diff --git a/toot/commands.py b/toot/commands.py index c9b3674..d80135e 100644 --- a/toot/commands.py +++ b/toot/commands.py @@ -64,7 +64,7 @@ def timeline(app, user, args): def curses(app, user, args): - from toot.app import TimelineApp + from toot.ui.app import TimelineApp if not args.public and (not app or not user): raise ConsoleError("You must be logged in to view the home timeline.") diff --git a/toot/ui/__init__.py b/toot/ui/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/toot/app.py b/toot/ui/app.py similarity index 100% rename from toot/app.py rename to toot/ui/app.py