Skip to content

Commit e2d772c

Browse files
committed
lint
Signed-off-by: zjgarvey <[email protected]>
1 parent ee73b8d commit e2d772c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

projects/e2e/torch_mlir_e2e_test/configs/__init__.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
from importlib import import_module
99

1010
CONFIG_LOCATIONS = {
11-
"LazyTensorCoreTestConfig" : "lazy_tensor_core",
12-
"NativeTorchTestConfig" : "native_torch",
13-
"OnnxBackendTestConfig" : "onnx_backend",
14-
"TorchScriptTestConfig" : "torchscript",
15-
"TorchDynamoTestConfig" : "torchdynamo",
16-
"JITImporterTestConfig" : "jit_importer_backend",
17-
"FxImporterTestConfig" : "fx_importer_backend",
11+
"LazyTensorCoreTestConfig": "lazy_tensor_core",
12+
"NativeTorchTestConfig": "native_torch",
13+
"OnnxBackendTestConfig": "onnx_backend",
14+
"TorchScriptTestConfig": "torchscript",
15+
"TorchDynamoTestConfig": "torchdynamo",
16+
"JITImporterTestConfig": "jit_importer_backend",
17+
"FxImporterTestConfig": "fx_importer_backend",
1818
}
1919

2020
def load_config(name: str) -> type:
2121
source = CONFIG_LOCATIONS.get(name)
2222
assert source is not None, f"Could not find TestConfig named {name}."
23-
module = import_module(f'.{source}', __package__)
23+
module = import_module(f".{source}", __package__)
2424
return getattr(module, name)

0 commit comments

Comments
 (0)