Skip to content

Commit 39a0ad5

Browse files
committed
fix flake8 findings
Signed-off-by: hwassman <[email protected]>
1 parent cb05da2 commit 39a0ad5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/collector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def _collect(self):
377377
for row in rows:
378378
for value, columnInfo in zip(row.values, res.columnInfos):
379379
columnValues[columnInfo].append([row.tstamp, value])
380-
else:
380+
else:
381381
columnValues = defaultdict(dict)
382382
for row in rows:
383383
for value, columnInfo in zip(row.values, res.columnInfos):

source/opentsdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def GET(self, **params):
384384
@cherrypy.config(**{'tools.json_in.force': False})
385385
@cherrypy.tools.json_in() # @UndefinedVariable
386386
@cherrypy.tools.json_out() # @UndefinedVariable
387-
def POST(self,**params):
387+
def POST(self, **params):
388388
''' Process POST. tools.json_in.force is set to False for
389389
compatability between versions of grafana < 3 and version 3.'''
390390

0 commit comments

Comments
 (0)