Skip to content

Commit 8b6aba5

Browse files
committed
Fix for flake8
tests/test.py:13:1: E402 module level import not at top of file
1 parent 6ae102d commit 8b6aba5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
import os
77
import sys
88
import unittest
9+
import yaml
910

1011
BASE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
1112
sys.path.insert(0, os.path.join(BASE_PATH, 'lib'))
12-
13-
import yaml
14-
1513
TESTSET_DIR = os.path.join(BASE_PATH, 'woothee', 'testsets')
1614

1715
TARGETS = [

0 commit comments

Comments
 (0)