Skip to content

Commit

Permalink
fix: python 3.8 compatibility - set typing
Browse files Browse the repository at this point in the history
  • Loading branch information
tklockau committed Oct 20, 2023
1 parent 5ab31ca commit ed2ce2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@dataclass
class _MultiSelectAttribute(_Attribute):

options: set[str]
options: t.Set[str]

@classmethod
def supports(cls, data_dict: dict):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@dataclass
class _SingleSelectAttribute(_Attribute):

options: set[str]
options: t.Set[str]

@classmethod
def supports(cls, data_dict: dict):
Expand Down

0 comments on commit ed2ce2d

Please sign in to comment.