Skip to content

Commit df013b5

Browse files
committed
Fixed flake8 details
1 parent c6c4b57 commit df013b5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/test_plot/test_pcbdraw.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
prev_dir = os.path.dirname(prev_dir)
2020
if prev_dir not in sys.path:
2121
sys.path.insert(0, prev_dir)
22-
from kibot.mcpy import activate
22+
from kibot.mcpy import activate # noqa: F401
2323
from kibot.out_pcbdraw import PcbDrawOptions
2424

2525
OUT_DIR = 'PcbDraw'
@@ -66,9 +66,9 @@ def test_pcbdraw_miss_rsvg(caplog, monkeypatch):
6666
m.setattr("shutil.which", no_rsvg_convert)
6767
m.setattr("subprocess.check_output", no_run)
6868
o = PcbDrawOptions()
69-
o.style=''
70-
o.remap=None
71-
o.format='jpg'
69+
o.style = ''
70+
o.remap = None
71+
o.format = 'jpg'
7272
cov.load()
7373
cov.start()
7474
o.run('', None)
@@ -84,9 +84,9 @@ def test_pcbdraw_miss_convert(caplog, monkeypatch):
8484
m.setattr("shutil.which", no_convert)
8585
m.setattr("subprocess.check_output", no_run)
8686
o = PcbDrawOptions()
87-
o.style=''
88-
o.remap=None
89-
o.format='jpg'
87+
o.style = ''
88+
o.remap = None
89+
o.format = 'jpg'
9090
cov.load()
9191
cov.start()
9292
o.run('', None)

0 commit comments

Comments
 (0)