mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Add missing typing
CURA-8009
This commit is contained in:
parent
7f2e951b9c
commit
888f62a9ea
1 changed files with 2 additions and 2 deletions
|
@ -310,7 +310,7 @@ class DigitalFactoryController(QObject):
|
|||
self._selected_file_indices = file_indices
|
||||
self.selectedFileIndicesChanged.emit(file_indices)
|
||||
|
||||
def setProjectFilter(self, new_filter) -> None:
|
||||
def setProjectFilter(self, new_filter: str) -> None:
|
||||
"""
|
||||
Called when the user wants to change the search filter for projects.
|
||||
|
||||
|
@ -333,7 +333,7 @@ class DigitalFactoryController(QObject):
|
|||
"""
|
||||
return self._project_filter
|
||||
|
||||
def _applyProjectFilter(self):
|
||||
def _applyProjectFilter(self) -> None:
|
||||
"""
|
||||
Actually apply the current filter to search for projects with the user-defined search string.
|
||||
:return:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue