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 e1beddf + 6ec2f4a commit b791f8aCopy full SHA for b791f8a
.gitignore
@@ -48,3 +48,7 @@ src/build
48
# Visual Studio Files
49
/.vs/*
50
/tests/.vs/*
51
+
52
+# The test configuration file(s) could potentially contain credentials
53
+tests/config.json
54
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