Is there any way to make python 3 code containing type hinting annotations to work with python 2 also?
def get(axyz: list, window_size: int=WINDOW_SIZE) -> numpy.array:
return numpy.array(axyz)
More importantly is that even possible?
Is there any way to make python 3 code containing type hinting annotations to work with python 2 also?
def get(axyz: list, window_size: int=WINDOW_SIZE) -> numpy.array:
return numpy.array(axyz)
More importantly is that even possible?