Add missing typing

CURA-8009
This commit is contained in:
Jaime van Kessel 2021-07-13 16:55:28 +02:00 committed by GitHub
parent 7f2e951b9c
commit 888f62a9ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -310,7 +310,7 @@ class DigitalFactoryController(QObject):
self._selected_file_indices = file_indices self._selected_file_indices = file_indices
self.selectedFileIndicesChanged.emit(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. Called when the user wants to change the search filter for projects.
@ -333,7 +333,7 @@ class DigitalFactoryController(QObject):
""" """
return self._project_filter 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. Actually apply the current filter to search for projects with the user-defined search string.
:return: :return: