Skip to content
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

crs.py: remove @abstractmethod decorator #1018

Merged
merged 1 commit into from Jan 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions pyproj/crs/crs.py
Expand Up @@ -7,7 +7,6 @@
import re
import threading
import warnings
from abc import abstractmethod
from typing import Any, Callable, Dict, List, Optional, Tuple, Union

from pyproj._crs import (
Expand Down Expand Up @@ -1591,7 +1590,6 @@ class CustomConstructorCRS(CRS):
"""

@property
@abstractmethod
def _expected_types(self) -> Tuple[str, ...]:
"""
These are the type names of the CRS class
Expand Down