You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The events parameter in the filter function can be empty (IndividualCalendar.py Line: 179)
Add: if events: return None
In OutlookCalendar.py line 63: tmp = IndividualCalendar.process_individual_calendars(individual_calendars, current_date, end_date) if tmp: individual_calendars_events.extend(tmp)
Note:
You can use Assignment Expressions to make it one line: if tmp := IndividualCalendar.process_individual_calendars(individual_calendars, current_date, end_date): individual_calendars_events.extend(tmp)
The text was updated successfully, but these errors were encountered:
The events parameter in the filter function can be empty (IndividualCalendar.py Line: 179)
Add:
if events: return None
In OutlookCalendar.py line 63:
tmp = IndividualCalendar.process_individual_calendars(individual_calendars, current_date, end_date)
if tmp: individual_calendars_events.extend(tmp)
Note:
You can use Assignment Expressions to make it one line:
if tmp := IndividualCalendar.process_individual_calendars(individual_calendars, current_date, end_date): individual_calendars_events.extend(tmp)
The text was updated successfully, but these errors were encountered: