A few methods in pyedgeconnect use return_type="full_response" to return a requests.model.Response object, however, while the docstring has the properly documented return type, the definition line type-hint incorrectly often has dict
current
def get_appliance_stats_minute_file(
self,
file: str,
) -> dict:
instead of
def get_appliance_stats_minute_file(
self,
file: str,
) -> requests.Response:
A few methods in pyedgeconnect use
return_type="full_response"to return a requests.model.Response object, however, while the docstring has the properly documented return type, the definition line type-hint incorrectly often hasdictcurrent
instead of