Skip to content
Snippets Groups Projects
Commit cf7397db authored by Andreas Klöckner's avatar Andreas Klöckner Committed by Andreas Klöckner
Browse files

Ignore spurious use-before-assignment pylint warning

parent 567cc8e4
No related branches found
No related tags found
No related merge requests found
Pipeline #475685 failed
......@@ -244,7 +244,7 @@ class DataTable:
if outer:
this_batch = [(None,) * len(self.column_names)]
if run_other and not other_over:
if run_other and not other_over: # pylint: disable=used-before-assignment # noqa: E501
key = other_key
while other_row[other_key_idx] == other_key:
other_batch.append(other_row)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment