1
0
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:
Martine Lenders 2017-11-27 16:06:55 +01:00 committed by GitHub
commit 752d8ffac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"