liteeth: pep8 (E401)
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 13 Apr 2015 08:45:09 +0000 (10:45 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 13 Apr 2015 08:45:09 +0000 (10:45 +0200)
misoclib/com/liteeth/example_designs/make.py
misoclib/com/liteeth/example_designs/test/make.py
misoclib/com/liteeth/example_designs/test/test_etherbone.py
misoclib/com/liteeth/test/common.py
misoclib/com/liteeth/test/model/etherbone.py
misoclib/com/liteeth/test/model/mac.py

index 4fdf983bb1a2c5de29c3bf182d8995a02509b624..caf6a293bdf1dbd3416faaffe23ef2fc9e55f4e6 100644 (file)
@@ -1,6 +1,11 @@
 #!/usr/bin/env python3
 
-import sys, os, argparse, subprocess, struct, importlib
+import sys
+import os
+import argparse
+import subprocess
+import struct
+import importlib
 
 from mibuild.tools import write_to_file
 from migen.util.misc import autotype
index 2c8bd7835901be48c47741bd566224698d6e170b..f7a9ec671cc316f27af26bfdb3b6f0e7e2731bf0 100644 (file)
@@ -1,5 +1,6 @@
 #!/usr/bin/env python3
-import argparse, importlib
+import argparse
+import importlib
 
 
 def _get_args():
index d8eeef760d5c6d9d891230ee105e92904c2e9cc5..adfbf1a658693e73e8281f972f098b96da80c991 100644 (file)
@@ -1,4 +1,5 @@
-import socket, time
+import socket
+import time
 from misoclib.com.liteeth.test.model.etherbone import *
 
 SRAM_BASE = 0x02000000
index 0b26c4b297919c05a5649feb52b5f239cd3d61bc..b1fd494b1dd327a148cdc546d602b312e3560083 100644 (file)
@@ -1,4 +1,5 @@
-import random, copy
+import random
+import copy
 
 from migen.fhdl.std import *
 from migen.flow.actor import Sink, Source
index ad8ed747c14f1251c76badf6421dea3e8298dfc5..c88dee0b534589e54806849d74d3e73bedb64bd2 100644 (file)
@@ -1,4 +1,5 @@
-import math, copy
+import math
+import copy
 
 from misoclib.com.liteeth.common import *
 from misoclib.com.liteeth.test.common import *
index 47693a73190bb53af3d771dd6033d8ca08a5a40c..80b39a865432367a94d85e21dfa48c535d9e3fd8 100644 (file)
@@ -1,4 +1,5 @@
-import math, binascii
+import math
+import binascii
 
 from misoclib.com.liteeth.common import *
 from misoclib.com.liteeth.test.common import *