32 @param project reference to the project object |
32 @param project reference to the project object |
33 @type Project |
33 @type Project |
34 @param parent reference to the parent object (defaults to None) |
34 @param parent reference to the parent object (defaults to None) |
35 @type QObject (optional) |
35 @type QObject (optional) |
36 """ |
36 """ |
37 super(UserProjectFile, self).__init__(parent) |
37 super().__init__(parent) |
38 self.__project = project |
38 self.__project = project |
39 |
39 |
40 def writeFile(self, filename: str) -> bool: |
40 def writeFile(self, filename: str) -> bool: |
41 """ |
41 """ |
42 Public method to write the user project data to a user project |
42 Public method to write the user project data to a user project |