fix: bip21.py: add missing import

urllib.parse needs to be explicitly imported for e.g. urllib.parse.urlparse to work.
I think this was not erroring only because urllib.parse is imported in other modules.
This commit is contained in:
SomberNight
2026-02-17 18:11:13 +00:00
parent e2c41aabbe
commit c6dfc8e649
+1
View File
@@ -1,4 +1,5 @@
import urllib
import urllib.parse
import re
from decimal import Decimal
from typing import Optional