Skip to content

Commit 2cf5261

Browse files
committed
fixed _helpers in Gates
1 parent a77d1a8 commit 2cf5261

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

cellengine/Gates/ellipse_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# from custom_inherit import doc_inherit
22
from .gate_util import create_common_gate, gate_style
3-
from .. import _helpers
3+
from .. import helpers
44

55
# @doc_inherit(create_common_gate, style=gate_style)
66
def create_ellipse_gate(

cellengine/Gates/polygon_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# from custom_inherit import doc_inherit
44
from .gate_util import create_common_gate, gate_style
5-
from .. import _helpers
5+
from .. import helpers
66

77

88
# @doc_inherit(create_common_gate, style=gate_style)

cellengine/Gates/quadrant_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from math import pi
22

33
# from custom_inherit import doc_inherit
4-
from .. import _helpers
4+
from .. import helpers
55
from .gate_util import create_common_gate, gate_style
66

77

cellengine/Gates/range_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import numpy
22

33
# from custom_inherit import doc_inherit
4-
from .. import _helpers
4+
from .. import helpers
55
from .gate_util import create_common_gate, gate_style
66

77

cellengine/Gates/rectangle_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import numpy
22

33
# from custom_inherit import doc_inherit
4-
from .. import _helpers
4+
from .. import helpers
55
from .gate_util import create_common_gate, gate_style
66

77

cellengine/Gates/split_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# from custom_inherit import doc_inherit
2-
from .. import _helpers
2+
from .. import helpers
33
from .gate_util import create_common_gate, gate_style
44

55

0 commit comments

Comments
 (0)