-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from typing import overload | ||
|
||
|
||
@overload | ||
def bool_int(bool_or_int: bool) -> int: | ||
... | ||
|
||
|
||
@overload | ||
def bool_int(bool_or_int: int) -> bool: | ||
... | ||
|
||
|
||
def bool_int(bool_or_int: bool | int) -> int | bool: | ||
if isinstance(bool_or_int, bool): | ||
return int(bool_or_int) | ||
else: | ||
# bools are also ints in Python :'o | ||
# so this has to be the else case | ||
return bool(bool_or_int) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters