I want to specify my function with correct type hints for return values. My function receives data as a dictionary and returns the modification. It also returns a status code as integer to check if the modification was successfull. For example I want to specify something like this:
def reworkData(measurement:dict)->dict,int:
...
return measurement,0
This currently results in invalid syntax. How can I do this?