30 @param project reference to the project object (Project) |
30 @param project reference to the project object (Project) |
31 @param file file name of a python module to be shown (string) |
31 @param file file name of a python module to be shown (string) |
32 @param noAttrs flag indicating, that no attributes should be shown |
32 @param noAttrs flag indicating, that no attributes should be shown |
33 (boolean) |
33 (boolean) |
34 """ |
34 """ |
35 super(UMLClassDiagramBuilder, self).__init__(dialog, view, project) |
35 super().__init__(dialog, view, project) |
36 self.setObjectName("UMLClassDiagramBuilder") |
36 self.setObjectName("UMLClassDiagramBuilder") |
37 |
37 |
38 self.file = file |
38 self.file = file |
39 self.noAttrs = noAttrs |
39 self.noAttrs = noAttrs |
40 |
40 |