Skip to content

Commit ecc442e

Browse files
committed
Remove backwards-compatibility imports from __all__
1 parent 9e6a183 commit ecc442e

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

pyproj/crs/__init__.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class.
55
"""
66

7-
from pyproj._crs import (
7+
from pyproj._crs import ( # noqa: F401 pylint: disable=unused-import
88
CoordinateOperation,
99
CoordinateSystem,
1010
Datum,
@@ -24,14 +24,10 @@
2424
ProjectedCRS,
2525
VerticalCRS,
2626
)
27-
from pyproj.exceptions import CRSError
27+
from pyproj.exceptions import CRSError # noqa: F401 pylint: disable=unused-import
2828

2929
__all__ = [
30-
"CoordinateOperation",
3130
"CoordinateSystem",
32-
"Datum",
33-
"Ellipsoid",
34-
"PrimeMeridian",
3531
"is_proj",
3632
"is_wkt",
3733
"CRS",
@@ -43,5 +39,4 @@
4339
"GeographicCRS",
4440
"ProjectedCRS",
4541
"VerticalCRS",
46-
"CRSError",
4742
]

0 commit comments

Comments
 (0)