eric6/Graphics/PackageDiagramBuilder.py

changeset 8218
7c09585bd960
parent 8217
385f60c94548
child 8220
006ee31b4835
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
34 @param project reference to the project object (Project) 34 @param project reference to the project object (Project)
35 @param package name of a python package to be shown (string) 35 @param package name of a python package to be shown (string)
36 @param noAttrs flag indicating, that no attributes should be shown 36 @param noAttrs flag indicating, that no attributes should be shown
37 (boolean) 37 (boolean)
38 """ 38 """
39 super(PackageDiagramBuilder, self).__init__(dialog, view, project) 39 super().__init__(dialog, view, project)
40 self.setObjectName("PackageDiagram") 40 self.setObjectName("PackageDiagram")
41 41
42 self.package = os.path.abspath(package) 42 self.package = os.path.abspath(package)
43 self.noAttrs = noAttrs 43 self.noAttrs = noAttrs
44 44

eric ide

mercurial