Skip to content

pyproj.crs: add imports to __all__ #1494

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion pyproj/crs/__init__.py
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
is_proj,
is_wkt,
)
from pyproj.crs.crs import ( # noqa: F401 pylint: disable=unused-import
from pyproj.crs.crs import (
CRS,
BoundCRS,
CompoundCRS,
@@ -25,3 +25,17 @@
VerticalCRS,
)
from pyproj.exceptions import CRSError # noqa: F401 pylint: disable=unused-import

__all__ = [
"is_proj",
"is_wkt",
"CRS",
"BoundCRS",
"CompoundCRS",
"CustomConstructorCRS",
"DerivedGeographicCRS",
"GeocentricCRS",
"GeographicCRS",
"ProjectedCRS",
"VerticalCRS",
]