Skip to content

Commit

Permalink
typing fix for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ntessore committed Dec 20, 2023
1 parent b88daeb commit 7172d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heracles/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@


# type alias for column specification
Columns = tuple[str | None, ...]
Columns = tuple["str | None", ...]


class Field(metaclass=ABCMeta):
Expand Down

0 comments on commit 7172d7e

Please sign in to comment.