Skip to content

Commit cd23f06

Browse files
committed
more adjustments
1 parent 1bb6ef3 commit cd23f06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

py2puml/inspection/inspectclass.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
from inspect import isabstract, signature
32
import inspect
43
from 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

py2puml/py2puml.domain.puml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,4 @@ py2puml.domain.umlenum.UmlEnum *-- py2puml.domain.umlenum.Member
4040
py2puml.domain.umlitem.UmlItem <|-- py2puml.domain.umlenum.UmlEnum
4141
py2puml.domain.umlrelation.UmlRelation *-- py2puml.domain.umlrelation.RelType
4242
@enduml
43+

0 commit comments

Comments
 (0)