Skip to content

Commit

Permalink
Fix support of Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
LulzLoL231 committed Jan 11, 2023
1 parent 59fa05d commit 907dbcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CryptoPayAPI/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class CryptoPay:
'''
def __init__(
self, api_key: str, testnet: bool = False,
client: AsyncClient | None = None
client: Optional[AsyncClient] = None
) -> None:
'''
Args:
Expand Down

0 comments on commit 907dbcf

Please sign in to comment.