KotlinIsland

Results 502 comments of KotlinIsland

> then an additional 3rd overload `f(a: int | str) -> complex` would cause `f(x)` to be inferred as `complex`. i disagree with this, if this was the semantics, how...

if you still want/need to use `argparse`, take a look at https://docs.python.org/3/library/argparse.html#argparse.Namespace the docs here are so insanely bad, it's unbelievable... but: ```py import argparse class CLIArgs(argparse.Namespace): foo: str parser...