Skip to content

Commit c6ecbfb

Browse files
author
Luke Bakken
committed
make lint happy
1 parent 2e5b0aa commit c6ecbfb

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

riak/codecs/ttb.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,16 @@ def decode_timeseries(self, resp_ttb, tsobj):
164164
elif len(resp_data) == 3:
165165
resp_colnames = resp_data[0]
166166
resp_coltypes = resp_data[1]
167-
tsobj.columns = self.decode_timeseries_cols(resp_colnames, resp_coltypes)
167+
tsobj.columns = self.decode_timeseries_cols(
168+
resp_colnames, resp_coltypes)
168169
resp_rows = resp_data[2]
169170
tsobj.rows = []
170171
for resp_row in resp_rows:
171172
tsobj.rows.append(
172173
self.decode_timeseries_row(resp_row, resp_coltypes))
173174
else:
174-
raise RiakError("Expected 3-tuple in response, got: {}".format(resp_data))
175+
raise RiakError(
176+
"Expected 3-tuple in response, got: {}".format(resp_data))
175177
else:
176178
raise RiakError("Unknown TTB response type: {}".format(resp_a))
177179

0 commit comments

Comments
 (0)