Closed stlehmann closed 3 years ago
By the way, should we stick to the comment-style typing:
def func(foo, bar): # type: (int, int) -> int return foo * bar var = 5 # type: int
Or the more modern in-line style typing:
def func(foo: int, bar: int) -> int: return foo * bar var: int = 5
Now both styles are being used.
We want to use type-annotations of the modern style alltogether.
By the way, should we stick to the comment-style typing:
Or the more modern in-line style typing:
Now both styles are being used.