fixed more stuff for ci/cd
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user