diff --git a/.gitignore b/.gitignore index 858ec6b..203f64e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ testing.py /databases/ .venv .env +**pycache**/ +*/__pycache__/ diff --git a/config/__init__.py b/config/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/config/__pycache__/database.cpython-312.pyc b/config/__pycache__/database.cpython-312.pyc deleted file mode 100644 index 71bd015..0000000 Binary files a/config/__pycache__/database.cpython-312.pyc and /dev/null differ diff --git a/database/__pycache__/__init__.cpython-312.pyc b/database/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5989d4a..0000000 Binary files a/database/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/database/__pycache__/flask_integration.cpython-312.pyc b/database/__pycache__/flask_integration.cpython-312.pyc deleted file mode 100644 index 9d821a4..0000000 Binary files a/database/__pycache__/flask_integration.cpython-312.pyc and /dev/null differ diff --git a/database/__pycache__/interface.cpython-312.pyc b/database/__pycache__/interface.cpython-312.pyc deleted file mode 100644 index c3b58ab..0000000 Binary files a/database/__pycache__/interface.cpython-312.pyc and /dev/null differ diff --git a/database/__pycache__/sqlite_db.cpython-312.pyc b/database/__pycache__/sqlite_db.cpython-312.pyc deleted file mode 100644 index 0133928..0000000 Binary files a/database/__pycache__/sqlite_db.cpython-312.pyc and /dev/null differ diff --git a/frontend/__pycache__/app.cpython-312.pyc b/frontend/__pycache__/app.cpython-312.pyc deleted file mode 100644 index c2a6ba3..0000000 Binary files a/frontend/__pycache__/app.cpython-312.pyc and /dev/null differ diff --git a/services/__pycache__/__init__.cpython-312.pyc b/services/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d7639ef..0000000 Binary files a/services/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/services/__pycache__/auth_service.cpython-312.pyc b/services/__pycache__/auth_service.cpython-312.pyc deleted file mode 100644 index cc9e2e4..0000000 Binary files a/services/__pycache__/auth_service.cpython-312.pyc and /dev/null differ diff --git a/services/__pycache__/user_service.cpython-312.pyc b/services/__pycache__/user_service.cpython-312.pyc deleted file mode 100644 index 68d0cf0..0000000 Binary files a/services/__pycache__/user_service.cpython-312.pyc and /dev/null differ diff --git a/services/auth_service.py b/services/auth_service.py index f71f68a..3ebda34 100644 --- a/services/auth_service.py +++ b/services/auth_service.py @@ -1,3 +1,4 @@ +"""Frontend Flask application module.""" import logging from typing import Any, Dict, Optional diff --git a/services/user_service.py b/services/user_service.py index 2cf6634..db485e8 100644 --- a/services/user_service.py +++ b/services/user_service.py @@ -1,3 +1,4 @@ +"""Frontend Flask application module.""" import logging from typing import Any, Dict, Optional diff --git a/utils/__pycache__/__init__.cpython-312.pyc b/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f45d26b..0000000 Binary files a/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/utils/__pycache__/auth_decorators.cpython-312.pyc b/utils/__pycache__/auth_decorators.cpython-312.pyc deleted file mode 100644 index c64c311..0000000 Binary files a/utils/__pycache__/auth_decorators.cpython-312.pyc and /dev/null differ diff --git a/utils/__pycache__/password_utils.cpython-312.pyc b/utils/__pycache__/password_utils.cpython-312.pyc deleted file mode 100644 index fb59076..0000000 Binary files a/utils/__pycache__/password_utils.cpython-312.pyc and /dev/null differ diff --git a/utils/__pycache__/validation.cpython-312.pyc b/utils/__pycache__/validation.cpython-312.pyc deleted file mode 100644 index 7a3e984..0000000 Binary files a/utils/__pycache__/validation.cpython-312.pyc and /dev/null differ