Skip to content

Commit

Permalink
Fix type checking error
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasvana10 committed May 27, 2024
1 parent 47d402b commit 6ed3df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crossword_puzzle/custom_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Placement(TypedDict):
word: str
direction: str
pos: Tuple[int]
intersections: List[None] | List[Tuple[int]]
intersections: Union[List[None], List[Tuple[int]]]


class CrosswordData(TypedDict):
Expand Down

0 comments on commit 6ed3df2

Please sign in to comment.