Commit 21ce93e
Fix ImportError with requests in model_zoo (#5896)
Not sure if this is a backwards compatibility issue.
```
Python 2.7.9 (default, Apr 2 2015, 15:35:35)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests.get as urlopen
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named get
>>> from requests import get as urlopen
>>>
```1 parent 2a4b33b commit 21ce93e
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
0 commit comments