Skip to content

Commit 3302963

Browse files
committed
PENG-6243 - Introduce support for billing-usage APIs
1 parent 4681781 commit 3302963

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

ns1/config.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ class ConfigException(Exception):
3232

3333

3434
class Config:
35-
3635
"""A simple object for accessing and manipulating config files. These
3736
contains options and credentials for accessing the NS1 REST API.
3837
Config files are simple JSON text files.
@@ -77,9 +76,9 @@ def _doDefaults(self):
7776
self._data["api_version"] = self.API_VERSION
7877

7978
if "api_version_before_resource" not in self._data:
80-
self._data[
81-
"api_version_before_resource"
82-
] = self.API_VERSION_BEFORE_RESOURCE
79+
self._data["api_version_before_resource"] = (
80+
self.API_VERSION_BEFORE_RESOURCE
81+
)
8382

8483
if "cli" not in self._data:
8584
self._data["cli"] = {}

ns1/monitoring.py

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ class MonitorException(Exception):
1212

1313

1414
class Monitor(object):
15-
1615
"""
1716
High level object representing a Monitor
1817
"""

ns1/records.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class RecordException(Exception):
1313

1414

1515
class Record(object):
16-
1716
"""
1817
High level object representing a Record
1918
"""

ns1/rest/transport/twisted.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ def _request_func(self, method, headers, data, files):
247247

248248
if headers is None:
249249
headers = {}
250-
headers[
251-
"Content-Type"
252-
] = "multipart/form-data; boundary={}".format(boundary)
250+
headers["Content-Type"] = (
251+
"multipart/form-data; boundary={}".format(boundary)
252+
)
253253
bProducer = FileBodyProducer(StringIO.StringIO(body))
254254

255255
theaders = (

0 commit comments

Comments
 (0)