We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d64b627 commit bceae79Copy full SHA for bceae79
mangopay/utils.py
@@ -15,17 +15,6 @@
15
from .compat import python_2_unicode_compatible
16
from .exceptions import CurrencyMismatch
17
18
-if six.PY3:
19
- from urllib import request
20
-
21
- orig = request.URLopener.open_https
22
- request.URLopener.open_https = orig # uncomment this line back and forth
23
-elif six.PY2:
24
- import urllib
25
26
- orig = urllib.URLopener.open_https
27
- urllib.URLopener.open_https = orig
28
29
30
class AliasProperty(object):
31
def __init__(self, name):
0 commit comments