Skip to content

Commit 0857fdb

Browse files
committed
test: Remove noqa
1 parent 4dc005e commit 0857fdb

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

tests/test_table/test_join.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def test_join_require_match(self):
215215
with self.assertRaises(ValueError):
216216
self.left.join(self.right, 'one', 'five', require_match=True)
217217

218-
new_table = self.left.join(self.right, 'one', 'four', require_match=True) # noqa
218+
self.left.join(self.right, 'one', 'four', require_match=True)
219219

220220
def test_join_columns_kwarg(self):
221221
new_table = self.left.join(self.right, 'one', 'four', columns=['six'])

tests/test_table/test_order_py.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -143,5 +143,4 @@ def test_order_by_with_row_names(self):
143143

144144
def test_order_by_empty_table(self):
145145
table = Table([], self.column_names)
146-
147-
new_table = table.order_by('three') # noqa
146+
table.order_by('three')

tests/test_table/test_print_bars.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_print_bars(self):
3232

3333
output = StringIO()
3434
table.print_bars('three', 'one', output=output)
35-
lines = output.getvalue().split('\n') # noqa
35+
output.getvalue().split('\n')
3636

3737
def test_print_bars_width(self):
3838
table = Table(self.rows, self.column_names, self.column_types)

0 commit comments

Comments
 (0)