diff --git a/backend/__pycache__/main.cpython-312.pyc b/backend/__pycache__/main.cpython-312.pyc index 8743bd6..69448ad 100644 Binary files a/backend/__pycache__/main.cpython-312.pyc and b/backend/__pycache__/main.cpython-312.pyc differ diff --git a/backend/core/__pycache__/celery_app.cpython-312.pyc b/backend/core/__pycache__/celery_app.cpython-312.pyc index ed5aaec..39f3ce1 100644 Binary files a/backend/core/__pycache__/celery_app.cpython-312.pyc and b/backend/core/__pycache__/celery_app.cpython-312.pyc differ diff --git a/backend/core/__pycache__/config.cpython-312.pyc b/backend/core/__pycache__/config.cpython-312.pyc index fbfe8fd..10a0ab4 100644 Binary files a/backend/core/__pycache__/config.cpython-312.pyc and b/backend/core/__pycache__/config.cpython-312.pyc differ diff --git a/backend/core/__pycache__/database.cpython-312.pyc b/backend/core/__pycache__/database.cpython-312.pyc index 300d627..29f2ec8 100644 Binary files a/backend/core/__pycache__/database.cpython-312.pyc and b/backend/core/__pycache__/database.cpython-312.pyc differ diff --git a/backend/core/__pycache__/exceptions.cpython-312.pyc b/backend/core/__pycache__/exceptions.cpython-312.pyc index b4e004e..5d0fa18 100644 Binary files a/backend/core/__pycache__/exceptions.cpython-312.pyc and b/backend/core/__pycache__/exceptions.cpython-312.pyc differ diff --git a/backend/modules/admin/__pycache__/api.cpython-312.pyc b/backend/modules/admin/__pycache__/api.cpython-312.pyc index 6207da4..7beb637 100644 Binary files a/backend/modules/admin/__pycache__/api.cpython-312.pyc and b/backend/modules/admin/__pycache__/api.cpython-312.pyc differ diff --git a/backend/modules/admin/__pycache__/tasks.cpython-312.pyc b/backend/modules/admin/__pycache__/tasks.cpython-312.pyc index 5e01d07..ccdd8d4 100644 Binary files a/backend/modules/admin/__pycache__/tasks.cpython-312.pyc and b/backend/modules/admin/__pycache__/tasks.cpython-312.pyc differ diff --git a/backend/modules/auth/__pycache__/api.cpython-312.pyc b/backend/modules/auth/__pycache__/api.cpython-312.pyc index b69dc64..fec21f8 100644 Binary files a/backend/modules/auth/__pycache__/api.cpython-312.pyc and b/backend/modules/auth/__pycache__/api.cpython-312.pyc differ diff --git a/backend/modules/auth/__pycache__/dependencies.cpython-312.pyc b/backend/modules/auth/__pycache__/dependencies.cpython-312.pyc index bce2297..3e8403e 100644 Binary files a/backend/modules/auth/__pycache__/dependencies.cpython-312.pyc and b/backend/modules/auth/__pycache__/dependencies.cpython-312.pyc differ diff --git a/backend/modules/auth/__pycache__/models.cpython-312.pyc b/backend/modules/auth/__pycache__/models.cpython-312.pyc index fe97777..20a253c 100644 Binary files a/backend/modules/auth/__pycache__/models.cpython-312.pyc and b/backend/modules/auth/__pycache__/models.cpython-312.pyc differ diff --git a/backend/modules/auth/__pycache__/schemas.cpython-312.pyc b/backend/modules/auth/__pycache__/schemas.cpython-312.pyc index c7ad7cb..4ba8ddf 100644 Binary files a/backend/modules/auth/__pycache__/schemas.cpython-312.pyc and b/backend/modules/auth/__pycache__/schemas.cpython-312.pyc differ diff --git a/backend/modules/auth/__pycache__/security.cpython-312.pyc b/backend/modules/auth/__pycache__/security.cpython-312.pyc index c087da8..0d639b2 100644 Binary files a/backend/modules/auth/__pycache__/security.cpython-312.pyc and b/backend/modules/auth/__pycache__/security.cpython-312.pyc differ diff --git a/backend/modules/auth/__pycache__/services.cpython-312.pyc b/backend/modules/auth/__pycache__/services.cpython-312.pyc index 94c4b82..7cec1a2 100644 Binary files a/backend/modules/auth/__pycache__/services.cpython-312.pyc and b/backend/modules/auth/__pycache__/services.cpython-312.pyc differ diff --git a/backend/modules/calendar/__pycache__/api.cpython-312.pyc b/backend/modules/calendar/__pycache__/api.cpython-312.pyc index 2c590a4..0416d50 100644 Binary files a/backend/modules/calendar/__pycache__/api.cpython-312.pyc and b/backend/modules/calendar/__pycache__/api.cpython-312.pyc differ diff --git a/backend/modules/calendar/__pycache__/models.cpython-312.pyc b/backend/modules/calendar/__pycache__/models.cpython-312.pyc index f86f1e9..ffabf7b 100644 Binary files a/backend/modules/calendar/__pycache__/models.cpython-312.pyc and b/backend/modules/calendar/__pycache__/models.cpython-312.pyc differ diff --git a/backend/modules/calendar/__pycache__/schemas.cpython-312.pyc b/backend/modules/calendar/__pycache__/schemas.cpython-312.pyc index cbfbd31..7f3ff14 100644 Binary files a/backend/modules/calendar/__pycache__/schemas.cpython-312.pyc and b/backend/modules/calendar/__pycache__/schemas.cpython-312.pyc differ diff --git a/backend/modules/calendar/__pycache__/service.cpython-312.pyc b/backend/modules/calendar/__pycache__/service.cpython-312.pyc index 725eba9..95f0381 100644 Binary files a/backend/modules/calendar/__pycache__/service.cpython-312.pyc and b/backend/modules/calendar/__pycache__/service.cpython-312.pyc differ diff --git a/backend/modules/calendar/service.py b/backend/modules/calendar/service.py index 9e0afcb..9884fa5 100644 --- a/backend/modules/calendar/service.py +++ b/backend/modules/calendar/service.py @@ -55,11 +55,11 @@ def get_calendar_events( query = query.filter( or_( # Case 1: Event has duration and overlaps - (CalendarEvent.end is not None) + (CalendarEvent.end != None) # Use SQLAlchemy comparison # noqa: E711 & (CalendarEvent.start < end) & (CalendarEvent.end > start), # Case 2: Event is a point event within the range - (CalendarEvent.end is None) + (CalendarEvent.end == None) # Use SQLAlchemy comparison # noqa: E711 & (CalendarEvent.start >= start) & (CalendarEvent.start < end), ) diff --git a/backend/modules/nlp/__pycache__/api.cpython-312.pyc b/backend/modules/nlp/__pycache__/api.cpython-312.pyc index b18dfb9..91a1205 100644 Binary files a/backend/modules/nlp/__pycache__/api.cpython-312.pyc and b/backend/modules/nlp/__pycache__/api.cpython-312.pyc differ diff --git a/backend/modules/nlp/__pycache__/models.cpython-312.pyc b/backend/modules/nlp/__pycache__/models.cpython-312.pyc index 4eebfa5..f113b09 100644 Binary files a/backend/modules/nlp/__pycache__/models.cpython-312.pyc and b/backend/modules/nlp/__pycache__/models.cpython-312.pyc differ diff --git a/backend/modules/nlp/__pycache__/schemas.cpython-312.pyc b/backend/modules/nlp/__pycache__/schemas.cpython-312.pyc index 4cecfc6..bcce691 100644 Binary files a/backend/modules/nlp/__pycache__/schemas.cpython-312.pyc and b/backend/modules/nlp/__pycache__/schemas.cpython-312.pyc differ diff --git a/backend/modules/nlp/__pycache__/service.cpython-312.pyc b/backend/modules/nlp/__pycache__/service.cpython-312.pyc index bd3f9cb..c02a10a 100644 Binary files a/backend/modules/nlp/__pycache__/service.cpython-312.pyc and b/backend/modules/nlp/__pycache__/service.cpython-312.pyc differ diff --git a/backend/modules/todo/__pycache__/api.cpython-312.pyc b/backend/modules/todo/__pycache__/api.cpython-312.pyc index 0cc2bdc..3444835 100644 Binary files a/backend/modules/todo/__pycache__/api.cpython-312.pyc and b/backend/modules/todo/__pycache__/api.cpython-312.pyc differ diff --git a/backend/modules/todo/__pycache__/models.cpython-312.pyc b/backend/modules/todo/__pycache__/models.cpython-312.pyc index 54ad666..4cb46ba 100644 Binary files a/backend/modules/todo/__pycache__/models.cpython-312.pyc and b/backend/modules/todo/__pycache__/models.cpython-312.pyc differ diff --git a/backend/modules/todo/__pycache__/schemas.cpython-312.pyc b/backend/modules/todo/__pycache__/schemas.cpython-312.pyc index 53de287..fa1f7f2 100644 Binary files a/backend/modules/todo/__pycache__/schemas.cpython-312.pyc and b/backend/modules/todo/__pycache__/schemas.cpython-312.pyc differ diff --git a/backend/modules/todo/__pycache__/service.cpython-312.pyc b/backend/modules/todo/__pycache__/service.cpython-312.pyc index b774be9..5a829b9 100644 Binary files a/backend/modules/todo/__pycache__/service.cpython-312.pyc and b/backend/modules/todo/__pycache__/service.cpython-312.pyc differ diff --git a/backend/modules/user/__pycache__/api.cpython-312.pyc b/backend/modules/user/__pycache__/api.cpython-312.pyc index 8b37d05..4044254 100644 Binary files a/backend/modules/user/__pycache__/api.cpython-312.pyc and b/backend/modules/user/__pycache__/api.cpython-312.pyc differ diff --git a/backend/tests/__pycache__/conftest.cpython-312-pytest-8.3.5.pyc b/backend/tests/__pycache__/conftest.cpython-312-pytest-8.3.5.pyc index 1cba04d..e8fce91 100644 Binary files a/backend/tests/__pycache__/conftest.cpython-312-pytest-8.3.5.pyc and b/backend/tests/__pycache__/conftest.cpython-312-pytest-8.3.5.pyc differ diff --git a/backend/tests/__pycache__/test_admin.cpython-312-pytest-8.3.5.pyc b/backend/tests/__pycache__/test_admin.cpython-312-pytest-8.3.5.pyc index 04cfef1..bf8ecad 100644 Binary files a/backend/tests/__pycache__/test_admin.cpython-312-pytest-8.3.5.pyc and b/backend/tests/__pycache__/test_admin.cpython-312-pytest-8.3.5.pyc differ diff --git a/backend/tests/__pycache__/test_auth.cpython-312-pytest-8.3.5.pyc b/backend/tests/__pycache__/test_auth.cpython-312-pytest-8.3.5.pyc index 9d0b1dc..cdcb64e 100644 Binary files a/backend/tests/__pycache__/test_auth.cpython-312-pytest-8.3.5.pyc and b/backend/tests/__pycache__/test_auth.cpython-312-pytest-8.3.5.pyc differ diff --git a/backend/tests/__pycache__/test_calendar.cpython-312-pytest-8.3.5.pyc b/backend/tests/__pycache__/test_calendar.cpython-312-pytest-8.3.5.pyc index fa50012..29c3508 100644 Binary files a/backend/tests/__pycache__/test_calendar.cpython-312-pytest-8.3.5.pyc and b/backend/tests/__pycache__/test_calendar.cpython-312-pytest-8.3.5.pyc differ diff --git a/backend/tests/__pycache__/test_main.cpython-312-pytest-8.3.5.pyc b/backend/tests/__pycache__/test_main.cpython-312-pytest-8.3.5.pyc index 06dff4a..f234eb8 100644 Binary files a/backend/tests/__pycache__/test_main.cpython-312-pytest-8.3.5.pyc and b/backend/tests/__pycache__/test_main.cpython-312-pytest-8.3.5.pyc differ diff --git a/backend/tests/__pycache__/test_nlp.cpython-312-pytest-8.3.5.pyc b/backend/tests/__pycache__/test_nlp.cpython-312-pytest-8.3.5.pyc index b0d485d..6f4326a 100644 Binary files a/backend/tests/__pycache__/test_nlp.cpython-312-pytest-8.3.5.pyc and b/backend/tests/__pycache__/test_nlp.cpython-312-pytest-8.3.5.pyc differ diff --git a/backend/tests/__pycache__/test_todo.cpython-312-pytest-8.3.5.pyc b/backend/tests/__pycache__/test_todo.cpython-312-pytest-8.3.5.pyc index 32d3066..855bea7 100644 Binary files a/backend/tests/__pycache__/test_todo.cpython-312-pytest-8.3.5.pyc and b/backend/tests/__pycache__/test_todo.cpython-312-pytest-8.3.5.pyc differ diff --git a/backend/tests/helpers/__pycache__/generators.cpython-312.pyc b/backend/tests/helpers/__pycache__/generators.cpython-312.pyc index 71548d4..479cc00 100644 Binary files a/backend/tests/helpers/__pycache__/generators.cpython-312.pyc and b/backend/tests/helpers/__pycache__/generators.cpython-312.pyc differ