tests: fix python style 'E401 multiple imports on one line'

This commit is contained in:
Alexandre Abadie 2017-11-18 21:25:41 +01:00
parent 1f15f79aee
commit e48e491b88
2 changed files with 5 additions and 4 deletions

View File

@ -7,13 +7,13 @@
# Distributed under terms of the MIT license. # Distributed under terms of the MIT license.
from __future__ import print_function from __future__ import print_function
import argparse import os
import os, sys import sys
import random import random
import pexpect
import subprocess import subprocess
import time import time
import types import types
import pexpect
DEFAULT_TIMEOUT = 5 DEFAULT_TIMEOUT = 5

View File

@ -1,5 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import subprocess, os import subprocess
import os
cross_gcc = "arm-none-eabi-gcc" cross_gcc = "arm-none-eabi-gcc"