Skip to content

Commit

Permalink
MNT: Add the missing types. [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Taher Chegini committed Sep 22, 2023
1 parent c00f99f commit ce0d756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pygeoogc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ def close(self) -> None:
"""Close the session."""
self.session.close()

def __enter__(self)-> RetrySession:
def __enter__(self) -> RetrySession:
return self

def __exit__(self, *args: Any)-> None:
def __exit__(self, *args: Any) -> None:
self.close()


Expand Down

0 comments on commit ce0d756

Please sign in to comment.