30 @param isGlobal flag indicating a file for a global session |
30 @param isGlobal flag indicating a file for a global session |
31 @type bool |
31 @type bool |
32 @param parent reference to the parent object (defaults to None) |
32 @param parent reference to the parent object (defaults to None) |
33 @type QObject (optional) |
33 @type QObject (optional) |
34 """ |
34 """ |
35 super(SessionFile, self).__init__(parent) |
35 super().__init__(parent) |
36 |
36 |
37 self.__isGlobal = isGlobal |
37 self.__isGlobal = isGlobal |
38 |
38 |
39 def writeFile(self, filename: str) -> bool: |
39 def writeFile(self, filename: str) -> bool: |
40 """ |
40 """ |