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.
from __future__ import print_function
import argparse
import os, sys
import os
import sys
import random
import pexpect
import subprocess
import time
import types
import pexpect
DEFAULT_TIMEOUT = 5

View File

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