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 9e6a183 commit ecc442eCopy full SHA for ecc442e
pyproj/crs/__init__.py
@@ -4,7 +4,7 @@
4
class.
5
"""
6
7
-from pyproj._crs import (
+from pyproj._crs import ( # noqa: F401 pylint: disable=unused-import
8
CoordinateOperation,
9
CoordinateSystem,
10
Datum,
@@ -24,14 +24,10 @@
24
ProjectedCRS,
25
VerticalCRS,
26
)
27
-from pyproj.exceptions import CRSError
+from pyproj.exceptions import CRSError # noqa: F401 pylint: disable=unused-import
28
29
__all__ = [
30
- "CoordinateOperation",
31
"CoordinateSystem",
32
- "Datum",
33
- "Ellipsoid",
34
- "PrimeMeridian",
35
"is_proj",
36
"is_wkt",
37
"CRS",
@@ -43,5 +39,4 @@
43
39
"GeographicCRS",
44
40
"ProjectedCRS",
45
41
"VerticalCRS",
46
- "CRSError",
47
42
]
0 commit comments