type ignore

This commit is contained in:
Shroominic
2025-05-26 23:55:15 +02:00
parent fa257cb5d9
commit 71d3f574bd
+1 -1
View File
@@ -231,7 +231,7 @@ async def get_lnurl_data(lnurl: str) -> tuple[str, int, int]:
elif lnurl.lower().startswith("lnurl"):
try:
# Optional import for environments where bech32 might not be present initially
from bech32 import bech32_decode, convertbits
from bech32 import bech32_decode, convertbits # type: ignore
hrp, data = bech32_decode(lnurl)
if data is None: