I was given python 3.x code but my python 2.7 interpreter won't interpret it due to the colons in the function definition.
The code I run:
def __init__(self, api_key: str, base_url: Tuple[str, None] = None):
And the error I get:
File "C:\Users\3791108\Downloads\CloudClient.py", line 191
def __init__(self, api_key: str, base_url: Tuple[str, None] = None):
^
SyntaxError: unexpected token ':'