Skip to content

Commit

Permalink
BUG: correct type annotation for AreaofUse.bounds pyproj4#1012
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill888 committed Jan 11, 2022
1 parent 76c3836 commit cb7d77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproj/_crs.pyi
Expand Up @@ -23,7 +23,7 @@ class AreaOfUse:
def __str__(self) -> str: ...
def __repr__(self) -> str: ...
@property
def bounds(self) -> tuple[float]: ...
def bounds(self) -> Tuple[float, float, float, float]: ...

class Base:
name: str
Expand Down

0 comments on commit cb7d77a

Please sign in to comment.