Skip to content

Commit

Permalink
fix typing for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Avrahami committed Apr 8, 2024
1 parent 02d291f commit fdf3ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unittests/test_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def test_finditer_parser_complex():
@dataclass
class Node:
name: str
values: list[int]
values: List[int]

values_parser = CollectionParser(";", int, opener="(", closer=")")
p = FindIterCollectionParser(
Expand Down

0 comments on commit fdf3ad7

Please sign in to comment.