Skip to content

Commit

Permalink
flake8 post black vfinal
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty committed Aug 8, 2019
1 parent 60760df commit 94c200b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/tests/test_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_getitem_1d_fancy(self):
ind = Variable(("a", "b"), [[0, 1], [0, 1]])
v_new = v[ind]
assert v_new.dims == ("a", "b")
expected = np.array(v._data)[([0, 1], [0, 1])]
expected = np.array(v._data)[([0, 1], [0, 1]),] # noqa
assert_array_equal(v_new, expected)

# boolean indexing
Expand Down

0 comments on commit 94c200b

Please sign in to comment.