mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Fix incompatible mypy type
This commit is contained in:
parent
bc408a5a67
commit
86bfb3a5aa
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ class DigitalFactoryApiClient:
|
|||
self._file_uploader = DFFileUploader(self._http, df_file_upload_response, mesh, on_finished, on_success, on_progress, on_error)
|
||||
self._file_uploader.start()
|
||||
|
||||
def createNewProject(self, project_name: str, on_finished: Callable[[CloudApiClientModel], Any], on_error: Callable) -> None:
|
||||
def createNewProject(self, project_name: str, on_finished: Callable[[DigitalFactoryProjectResponse], Any], on_error: Callable) -> None:
|
||||
""" Create a new project in the Digital Factory.
|
||||
|
||||
:param project_name: Name of the new to be created project.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue