Browse Source

Fix typing of Any

ChrisTerBeke 5 years ago
parent
commit
baf9dc041c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py

+ 1 - 1
plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py

@@ -100,7 +100,7 @@ class CloudApiClient:
     #  \param cluster_id: The ID of the cluster.
     #  \param cluster_id: The ID of the cluster.
     #  \param cluster_job_id: The ID of the print job within the cluster.
     #  \param cluster_job_id: The ID of the print job within the cluster.
     #  \param action: The name of the action to execute.
     #  \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""
         body = b""
         if data:
         if data:
             try:
             try: