Skip to content

Commit 4178287

Browse files
committed
pylin over wire.py
1 parent fb7d62b commit 4178287

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

OCCUtils/wire.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919

2020
from OCC.TopoDS import TopoDS_Wire
2121

22-
from base import KbeObject
22+
from OCCUtils.base import BaseObject
2323

2424

25-
class Wire(TopoDS_Wire, KbeObject):
25+
class Wire(TopoDS_Wire, BaseObject):
2626
def __init__(self, wire):
2727
'''
2828
'''
2929
assert isinstance(wire, TopoDS_Wire), 'need a TopoDS_Wire, got a %s' % wire.__class__
3030
assert not wire.IsNull()
3131
super(Wire, self).__init__()
32-
KbeObject.__init__(self, 'wire')
32+
BaseObject.__init__(self, 'wire')
3333
# we need to copy the base shape using the following three
3434
# lines
3535
assert self.IsNull()

0 commit comments

Comments
 (0)