From 1d406eb8396632e120e954781d1646dfa0ffacf2 Mon Sep 17 00:00:00 2001 From: xiexionghang Date: Mon, 8 Jun 2020 16:56:13 +0800 Subject: [PATCH] fix code style --- core/modules/modul/build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/modules/modul/build.py b/core/modules/modul/build.py index c1926175..681f9ed8 100755 --- a/core/modules/modul/build.py +++ b/core/modules/modul/build.py @@ -34,7 +34,8 @@ def create(config): if config['mode'] == 'fluid': if config['layer_file'].endswith(".py"): - model_class = envs.lazy_instance_by_fliename(config['layer_file'], "Model") + model_class = envs.lazy_instance_by_fliename(config['layer_file'], + "Model") model = model_class(config) else: model = YamlModel(config) -- GitLab