We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa1164 commit 1382fecCopy full SHA for 1382fec
pyproj/crs/__init__.py
@@ -13,7 +13,7 @@
13
is_proj,
14
is_wkt,
15
)
16
-from pyproj.crs.crs import ( # noqa: F401 pylint: disable=unused-import
+from pyproj.crs.crs import (
17
CRS,
18
BoundCRS,
19
CompoundCRS,
@@ -25,3 +25,17 @@
25
VerticalCRS,
26
27
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