Skip to content

Commit 13d9c20

Browse files
committed
[Flake8] Fixed small details
1 parent ec5f42e commit 13d9c20

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

tests/test_pcb_diff.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
import os
1515
import sys
16-
import logging
1716
# Look for the 'utils' module from where the script is running
1817
script_dir = os.path.dirname(os.path.abspath(__file__))
1918
sys.path.insert(0, os.path.dirname(script_dir))

tests/test_sch_diff.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
import os
1515
import sys
16-
import logging
1716
# Look for the 'utils' module from where the script is running
1817
script_dir = os.path.dirname(os.path.abspath(__file__))
1918
sys.path.insert(0, os.path.dirname(script_dir))
@@ -24,7 +23,6 @@
2423
def test_sch_simple_1(test_dir):
2524
ctx = context.TestContextSCH(test_dir, 1)
2625
ctx.run()
27-
#ctx.compare_out_file()
2826
ctx.compare_out_pngs()
2927
ctx.clean_up()
3028

@@ -33,7 +31,6 @@ def test_sch_multi_1(test_dir):
3331
ctx = context.TestContextSCH(test_dir, 2)
3432
ctx.run(['--all_pages'])
3533
ctx.compare_out_file()
36-
#ctx.compare_out_pngs()
3734
ctx.clean_up()
3835

3936

tests/utils/context.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import os
2-
import shutil
3-
import tempfile
42
import logging
53
import subprocess
64
import re

0 commit comments

Comments
 (0)