Moved disable warnings to __init__

This commit is contained in:
Boyan 2024-11-18 19:57:48 +01:00
parent 812f384c3d
commit 514fcd2438

View File

@ -1,3 +1,5 @@
from .themis import Themis from .themis import Themis
import urllib3
__all__ = ["Themis"] __all__ = ["Themis"]
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)