Skip to content

Commit

Permalink
ruff (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener authored Jan 6, 2025
1 parent 1dd63a6 commit 507ed25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion constantdict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@


import sys
from typing import Any, Dict, Iterable, TypeVar # <3.9 needs Dict, not dict
from collections.abc import Iterable
from typing import Any, Dict, TypeVar # <3.9 needs Dict, not dict

K = TypeVar("K")
V = TypeVar("V")
Expand Down

0 comments on commit 507ed25

Please sign in to comment.