File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11
2- from inspect import isabstract , signature
32import inspect
43from typing import Type , List , Dict
54
@@ -102,7 +101,7 @@ def handle_class_type(
102101 fqn = class_type_fqn ,
103102 attributes = definition_attrs ,
104103 methods = definition_methods ,
105- is_abstract = isabstract (class_type )
104+ is_abstract = inspect . isabstract (class_type )
106105 )
107106 domain_items_by_fqn [class_type_fqn ] = uml_class
108107 return uml_class
Original file line number Diff line number Diff line change @@ -40,3 +40,4 @@ py2puml.domain.umlenum.UmlEnum *-- py2puml.domain.umlenum.Member
4040py2puml . domain . umlitem . UmlItem <|-- py2puml . domain . umlenum . UmlEnum
4141py2puml . domain . umlrelation . UmlRelation *-- py2puml . domain . umlrelation . RelType
4242@enduml
43+
You can’t perform that action at this time.
0 commit comments