We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb7d62b commit 4178287Copy full SHA for 4178287
OCCUtils/wire.py
@@ -19,17 +19,17 @@
19
20
from OCC.TopoDS import TopoDS_Wire
21
22
-from base import KbeObject
+from OCCUtils.base import BaseObject
23
24
25
-class Wire(TopoDS_Wire, KbeObject):
+class Wire(TopoDS_Wire, BaseObject):
26
def __init__(self, wire):
27
'''
28
29
assert isinstance(wire, TopoDS_Wire), 'need a TopoDS_Wire, got a %s' % wire.__class__
30
assert not wire.IsNull()
31
super(Wire, self).__init__()
32
- KbeObject.__init__(self, 'wire')
+ BaseObject.__init__(self, 'wire')
33
# we need to copy the base shape using the following three
34
# lines
35
assert self.IsNull()
0 commit comments