mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Merge pull request #8150 from aabadie/pr/tests/python_E401
tests: fix python style 'E401 multiple imports on one line'
This commit is contained in:
commit
752d8ffac7
@ -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
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
import subprocess, os
|
||||
import subprocess
|
||||
import os
|
||||
|
||||
cross_gcc = "arm-none-eabi-gcc"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user