Skip to content

Commit

Permalink
fix python 3.9 typings
Browse files Browse the repository at this point in the history
  • Loading branch information
devkral committed Nov 13, 2024
1 parent c9c5035 commit 68699e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monkay/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def update_all_var(self, all_var: Collection[str]) -> list[str] | set[str]:
else:
cast(set[str], all_var).add(var)

return cast(list[str] | set[str], all_var)
return cast("list[str] | set[str]", all_var)

def find_missing(
self,
Expand Down

0 comments on commit 68699e4

Please sign in to comment.