Skip to content

Commit 96f7d13

Browse files
committed
Correct PEP8 issue
1 parent 10066b1 commit 96f7d13

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/test_bashplot.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,19 @@ def test_fnames():
6868

6969

7070
def test_options_scatter():
71-
assert bashplot.get_args(opt={"scatter": True})["scatter"] == True
71+
assert bashplot.get_args(opt={"scatter": True})["scatter"] is True
7272

7373

7474
def test_options_color():
75-
assert bashplot.get_args(opt={"color": True})["color"] == True
75+
assert bashplot.get_args(opt={"color": True})["color"] is True
7676

7777

7878
def test_options_legend():
79-
assert bashplot.get_args(opt={"legend": False})["legend"] == False
79+
assert bashplot.get_args(opt={"legend": False})["legend"] is False
8080

8181

8282
def test_options_version():
83-
assert bashplot.get_args(opt={"version": True})["version"] == True
83+
assert bashplot.get_args(opt={"version": True})["version"] is True
8484

8585

8686
def test_xlimits():

0 commit comments

Comments
 (0)