Skip to content

Commit

Permalink
fixing linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Nov 16, 2020
1 parent f379dad commit a3e6b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def test_sort_dir_spectrum(self, galaxy, class_, expected):
spec = spax.flux

dir_ = _sort_dir(spec, class_)
dir_public = [it for it in dir_ if it[0] is not '_']
dir_public = [it for it in dir_ if it[0] != '_']
assert set(dir_public) == set(expected)


Expand Down

0 comments on commit a3e6b63

Please sign in to comment.