mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Fix typing in __init__ methods to appease MYPY
This commit is contained in:
parent
9f023eb28e
commit
6abf916ced
7 changed files with 7 additions and 7 deletions
|
@ -15,7 +15,7 @@ if TYPE_CHECKING:
|
|||
|
||||
|
||||
class CuraPackageManager(PackageManager):
|
||||
def __init__(self, application: "QtApplication", parent: Optional["QObject"] = None):
|
||||
def __init__(self, application: "QtApplication", parent: Optional["QObject"] = None) -> None:
|
||||
super().__init__(application, parent)
|
||||
|
||||
def initialize(self) -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue