From 4a79c10750cd134a2e6d9bc7cd9499143029bfcb Mon Sep 17 00:00:00 2001 From: Junming Wu Date: Wed, 4 Jan 2023 11:49:36 +0800 Subject: [PATCH] [NFC] polish colossalai/cli/benchmark/__init__.py code style (#2308) --- colossalai/cli/benchmark/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/colossalai/cli/benchmark/__init__.py b/colossalai/cli/benchmark/__init__.py index c020d33b6..618ff8c61 100644 --- a/colossalai/cli/benchmark/__init__.py +++ b/colossalai/cli/benchmark/__init__.py @@ -1,9 +1,10 @@ import click -from .utils import * -from .benchmark import run_benchmark from colossalai.context import Config +from .benchmark import run_benchmark +from .utils import * + __all__ = ['benchmark']