Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
inbalboa committed Apr 29, 2024
1 parent d3d4b30 commit 87153b7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pymstodo/client.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import dataclasses
import json
import os
import time
from datetime import datetime, timezone
from enum import Enum
from typing import Any, Literal, TypedDict
from zoneinfo import ZoneInfo
import os

from requests_oauthlib import OAuth2Session

Expand Down Expand Up @@ -543,5 +543,6 @@ def complete_task(self, task_id: str, list_id: str) -> Task:
PymstodoError: An error occurred accessing the API'''
return self.update_task(task_id, list_id, status='completed')

os.environ['OAUTHLIB_RELAX_TOKEN_SCOPE'] = '1'

os.environ['OAUTHLIB_RELAX_TOKEN_SCOPE'] = '1' # noqa: S105
os.environ['OAUTHLIB_IGNORE_SCOPE_CHANGE'] = '1'

0 comments on commit 87153b7

Please sign in to comment.