From a75659fa30fdccfe3128c3037385346aa3766e50 Mon Sep 17 00:00:00 2001 From: Blake Ridgway Date: Sat, 5 Apr 2025 18:04:13 -0500 Subject: [PATCH] feat: Add __init__.py files to mark directories as packages This commit introduces `__init__.py` files to the `timelogix` and `timelogix/ui` directories, enabling Python to recognize them as packages. - Added empty `__init__.py` files to `timelogix` and `timelogix/ui`. --- __init__.py | 0 ui/__init__.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 __init__.py create mode 100644 ui/__init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ui/__init__.py b/ui/__init__.py new file mode 100644 index 0000000..e69de29