diff options
Diffstat (limited to '')
-rw-r--r-- | sjdbmk/cal.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sjdbmk/cal.py b/sjdbmk/cal.py index 0d57711..eccedc3 100644 --- a/sjdbmk/cal.py +++ b/sjdbmk/cal.py @@ -17,11 +17,12 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. # -from typing import Any +from typing import Any import datetime import requests + def calfetch(token: str, calendar_address: str, datetime_target: datetime.datetime) -> Any: calendar_response = requests.get( "https://graph.microsoft.com/v1.0/users/%s/calendar/calendarView" % calendar_address, |