Skip to content

Commit b3fee67

Browse files
committed
Removed unused imports
1 parent b9f7ba0 commit b3fee67

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

oauth1/authenticationutils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
#
2929
from OpenSSL import crypto
3030

31-
32-
3331
def load_signing_key(pkcs12_filename, password):
3432
private_key_file = open(pkcs12_filename, 'rb')
3533
p12 = crypto.load_pkcs12(private_key_file.read(), password.encode("utf-8"))

oauth1/coreutils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@
3232

3333
import hashlib
3434
import base64
35-
import re
3635

37-
from urllib.parse import urlparse, quote, quote_plus, parse_qsl
36+
from urllib.parse import urlparse, quote, parse_qsl
3837

3938
def normalize_params(url, params):
4039
"""

0 commit comments

Comments
 (0)