Fix typing of Any

This commit is contained in:
ChrisTerBeke 2019-06-20 12:56:45 +02:00
parent 0513322f86
commit baf9dc041c

View File

@ -100,7 +100,7 @@ class CloudApiClient:
# \param cluster_id: The ID of the cluster.
# \param cluster_job_id: The ID of the print job within the cluster.
# \param action: The name of the action to execute.
def doPrintJobAction(self, cluster_id: str, cluster_job_id: str, action: str, data: Dict[str, any] = None) -> None:
def doPrintJobAction(self, cluster_id: str, cluster_job_id: str, action: str, data: Dict[str, Any] = None) -> None:
body = b""
if data:
try: