We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b21193 commit f8648d6Copy full SHA for f8648d6
1 file changed
pyarchivefile_py3.py
@@ -66,20 +66,20 @@ def randbits(k):
66
value = int.from_bytes(raw_bytes, 'big')
67
return value >> (num_bytes * 8 - k)
68
69
-defcert = None
70
-try:
71
- import certifi
72
- defcert = certifi.where()
73
-except ImportError:
74
- pass
75
-
76
# Optional Bluetooth RFCOMM support: works via stdlib on Linux (AF_BLUETOOTH/BTPROTO_RFCOMM)
77
# and via PyBluez if installed.
78
try:
79
import bluetooth as _pybluez # type: ignore
80
except Exception:
81
_pybluez = None
82
+defcert = None
+try:
+ import certifi
+ defcert = certifi.where()
+except ImportError:
+ pass
+
83
import http.cookiejar as cookielib
84
from http.cookies import SimpleCookie
85
from http.client import HTTPException
0 commit comments