Skip to content

Commit c687285

Browse files
committed
2 parents db2e7f7 + 0a50f05 commit c687285

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

plotpy/panels/__init__.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,10 @@
55

66
from .base import PanelWidget
77
from .contrastadjustment import ContrastAdjustment
8-
from .csection import ObliqueCrossSection, XCrossSection, YCrossSection
8+
from .csection import (
9+
ObliqueCrossSection,
10+
XCrossSection,
11+
YCrossSection,
12+
LineCrossSection,
13+
)
914
from .itemlist import PlotItemList

plotpy/panels/csection/__init__.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,15 @@
1111
.. autoclass:: XCrossSection
1212
.. autoclass:: YCrossSection
1313
.. autoclass:: ObliqueCrossSection
14+
.. autoclass:: LineCrossSection
1415
"""
1516

1617
# pylint: disable=unused-import
1718
# flake8: noqa
1819

19-
from .cswidget import ObliqueCrossSection, XCrossSection, YCrossSection
20+
from .cswidget import (
21+
ObliqueCrossSection,
22+
XCrossSection,
23+
YCrossSection,
24+
LineCrossSection,
25+
)

0 commit comments

Comments
 (0)