Skip to content

Commit 1382fec

Browse files
authored
pyproj.crs: add imports to __all__ (#1494)
1 parent 1fa1164 commit 1382fec

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

pyproj/crs/__init__.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
is_proj,
1414
is_wkt,
1515
)
16-
from pyproj.crs.crs import ( # noqa: F401 pylint: disable=unused-import
16+
from pyproj.crs.crs import (
1717
CRS,
1818
BoundCRS,
1919
CompoundCRS,
@@ -25,3 +25,17 @@
2525
VerticalCRS,
2626
)
2727
from pyproj.exceptions import CRSError # noqa: F401 pylint: disable=unused-import
28+
29+
__all__ = [
30+
"is_proj",
31+
"is_wkt",
32+
"CRS",
33+
"BoundCRS",
34+
"CompoundCRS",
35+
"CustomConstructorCRS",
36+
"DerivedGeographicCRS",
37+
"GeocentricCRS",
38+
"GeographicCRS",
39+
"ProjectedCRS",
40+
"VerticalCRS",
41+
]

0 commit comments

Comments
 (0)