remove stale code

This commit is contained in:
2026-04-01 23:16:46 -07:00
parent d4cecf0372
commit df97b25985
5 changed files with 8 additions and 32 deletions

View File

@@ -54,14 +54,6 @@ def demo_dir() -> Path:
return project_root() / "demo"
def input_dir() -> Path:
return app_data_dir() / "input"
def output_dir() -> Path:
return app_data_dir() / "output"
def plugins_dir() -> Path:
return app_data_dir() / "plugins"
@@ -84,7 +76,5 @@ def plugins_enabled(*, native: bool) -> bool:
def ensure_runtime_dirs(*, with_plugins: bool = False) -> None:
input_dir().mkdir(parents=True, exist_ok=True)
output_dir().mkdir(parents=True, exist_ok=True)
if with_plugins:
plugins_dir().mkdir(parents=True, exist_ok=True)