Improve and add type checking to SDK modules
Opened this issue · 0 comments
antaenc commented
Convert legacy type comments to Python3 annotation style.
Instead of:
def d(arg1): # type:(str) -> str
Change to:
def f(arg1: str) -> str:
Opened this issue · 0 comments
Convert legacy type comments to Python3 annotation style.
Instead of:
def d(arg1): # type:(str) -> str
Change to:
def f(arg1: str) -> str: