From 71ec644f0c653f95b71caca5ac987e3c495f5c24 Mon Sep 17 00:00:00 2001 From: Exil Productions Date: Thu, 4 Dec 2025 23:22:50 +0100 Subject: [PATCH] Move App.py to Root --- src/statsman/{ui => }/app.py | 2 +- src/statsman/cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/statsman/{ui => }/app.py (97%) diff --git a/src/statsman/ui/app.py b/src/statsman/app.py similarity index 97% rename from src/statsman/ui/app.py rename to src/statsman/app.py index 319334e..e4b5d98 100644 --- a/src/statsman/ui/app.py +++ b/src/statsman/app.py @@ -4,7 +4,7 @@ import signal import threading from typing import Optional -from .renderer import StatsManRenderer +from .ui.renderer import StatsManRenderer class KeyboardHandler: diff --git a/src/statsman/cli.py b/src/statsman/cli.py index fb3c483..aaca763 100644 --- a/src/statsman/cli.py +++ b/src/statsman/cli.py @@ -1,5 +1,5 @@ import click -from .ui.app import StatsManApp +from .app import StatsManApp @click.command()