misc: Run pre-commit run --all-files
This ensures `isort` is applied to all files in the repo. Change-Id: Ib7ced1c924ef1639542bf0d1a01c5737f6ba43e9
This commit is contained in:
@@ -38,21 +38,27 @@
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import math
|
||||
|
||||
import m5
|
||||
from m5.objects import *
|
||||
from m5.defines import buildEnv
|
||||
from m5.util import addToPath, fatal
|
||||
from m5.objects import *
|
||||
from m5.util import (
|
||||
addToPath,
|
||||
fatal,
|
||||
)
|
||||
|
||||
from gem5.isas import ISA
|
||||
from gem5.runtime import get_runtime_isa
|
||||
|
||||
addToPath("../")
|
||||
|
||||
from common import ObjectList
|
||||
from common import MemConfig
|
||||
from common import FileSystemConfig
|
||||
|
||||
from topologies import *
|
||||
from common import (
|
||||
FileSystemConfig,
|
||||
MemConfig,
|
||||
ObjectList,
|
||||
)
|
||||
from network import Network
|
||||
from topologies import *
|
||||
|
||||
|
||||
def define_options(parser):
|
||||
|
||||
Reference in New Issue
Block a user