Skip to content

Commit

Permalink
satisfy linter
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-w committed Feb 6, 2025
1 parent 6800fea commit b0740fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import re
import string
from collections.abc import Callable
from collections.abc import Iterator
from datetime import datetime
from datetime import timezone
import re
import string
from typing import TypeVar

from dateutil.parser import parse, parserinfo
from dateutil.parser import parse
from dateutil.parser import parserinfo

from onyx.configs.app_configs import CONNECTOR_LOCALHOST_OVERRIDE
from onyx.configs.constants import IGNORE_FOR_QA
Expand Down
1 change: 0 additions & 1 deletion backend/tests/unit/onyx/connectors/gmail/test_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def test_time_str_to_utc() -> None:
"22 Mar 2020 20:12:18 +0000 (GMT)": datetime.datetime(
2020, 3, 22, 20, 12, 18, tzinfo=datetime.timezone.utc
),

# malformed strings, which should be fixed automatically:
# 0000 corrected to +0000
"22 Mar 2020 20:12:18 0000": datetime.datetime(
Expand Down

0 comments on commit b0740fb

Please sign in to comment.