Skip to content

Commit

Permalink
Fixed flake8 details
Browse files Browse the repository at this point in the history
  • Loading branch information
set-soft committed Aug 28, 2020
1 parent c6c4b57 commit df013b5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_plot/test_pcbdraw.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
prev_dir = os.path.dirname(prev_dir)
if prev_dir not in sys.path:
sys.path.insert(0, prev_dir)
from kibot.mcpy import activate
from kibot.mcpy import activate # noqa: F401
from kibot.out_pcbdraw import PcbDrawOptions

OUT_DIR = 'PcbDraw'
Expand Down Expand Up @@ -66,9 +66,9 @@ def test_pcbdraw_miss_rsvg(caplog, monkeypatch):
m.setattr("shutil.which", no_rsvg_convert)
m.setattr("subprocess.check_output", no_run)
o = PcbDrawOptions()
o.style=''
o.remap=None
o.format='jpg'
o.style = ''
o.remap = None
o.format = 'jpg'
cov.load()
cov.start()
o.run('', None)
Expand All @@ -84,9 +84,9 @@ def test_pcbdraw_miss_convert(caplog, monkeypatch):
m.setattr("shutil.which", no_convert)
m.setattr("subprocess.check_output", no_run)
o = PcbDrawOptions()
o.style=''
o.remap=None
o.format='jpg'
o.style = ''
o.remap = None
o.format = 'jpg'
cov.load()
cov.start()
o.run('', None)
Expand Down

0 comments on commit df013b5

Please sign in to comment.