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.
2 parents 9466088 + b791f8a commit 088ef93Copy full SHA for 088ef93
.gitignore
@@ -53,3 +53,6 @@ src/build
53
# vim files
54
*.swp
55
56
+# The test configuration file(s) could potentially contain credentials
57
+tests/config.json
58
+
tests/test_client.py
@@ -6,6 +6,10 @@
6
except: # Python 3
7
from urllib.parse import urljoin
8
import time
9
+try:
10
+ FileNotFoundError # Python 3
11
+except NameError:
12
+ FileNotFoundError = IOError # Python 2
13
14
import requests
15
0 commit comments