Skip to content

Commit

Permalink
Try to fix mypy error #4.
Browse files Browse the repository at this point in the history
  • Loading branch information
junhaoliao committed Apr 20, 2024
1 parent 5135a76 commit bcd16fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/clp_logging/readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
try:
from zoneinfo import ZoneInfo # type: ignore[import-not-found, unused-ignore]
except ImportError:
from backports.zoneinfo import ZoneInfo # type: ignore[import-not-found, no-redef, unused-ignore]
from backports.zoneinfo import ( # type: ignore[import-not-found, no-redef, unused-ignore]
ZoneInfo,
)


class Log:
Expand Down

0 comments on commit bcd16fd

Please sign in to comment.