This is ok for mypy:
from typing import Union
def foo(x: Union[int, str]):
if isinstance(x, int):
return x + 10
but how can I make it work if the isinstance
test is in a function call?
from typing import Union
def check(x: Union[int, str]) -> bool:
return isinstance(x, int)
def foo(x: Union[int, str]):
if check(x):
return x + 10
I get:
foo.py:8: error: Unsupported operand types for + ("Union[int, str]" and "int")
gwerbin, Naddiseo, tarcisioe, iddan, WillAyd and 17 more
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4