Skip to content

Commit 2cf40cb

Browse files
fixed linting errors'
1 parent 874e7d8 commit 2cf40cb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

toolchain/mfc/run/case_dicts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def analytic(self):
117117
PRE_PROCESS[f"patch_ib({ib_id})%{real_attr}"] = ty
118118

119119
for vel_id in range(1, 4):
120-
PRE_PROCESS[f"patch_ib({ib_id})%vel({vel_id})"] = ParamType.REAL
120+
PRE_PROCESS[f"patch_ib({ib_id})%vel({vel_id})"] = ParamType.REAL
121121

122122
for cmp_id, cmp in enumerate(["x", "y", "z"]):
123123
cmp_id += 1
@@ -348,7 +348,7 @@ def analytic(self):
348348
SIMULATION[f"patch_ib({ib_id})%{real_attr}"] = ty
349349

350350
for vel_id in range(1, 4):
351-
SIMULATION[f"patch_ib({ib_id})%vel({vel_id})"] = ParamType.REAL
351+
SIMULATION[f"patch_ib({ib_id})%vel({vel_id})"] = ParamType.REAL
352352

353353
for cmp_id, cmp in enumerate(["x", "y", "z"]):
354354
cmp_id += 1

toolchain/mfc/run/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def __execute_job_script(qsystem: queues.QueueSystem):
136136
def run(targets = None, case = None):
137137
targets = get_targets(list(REQUIRED_TARGETS) + (targets or ARG("targets")))
138138
case = case or input.load(ARG("input"), ARG("--"))
139-
139+
140140
build(targets)
141141

142142
cons.print("[bold]Run[/bold]")

0 commit comments

Comments
 (0)