Skip to content

Commit 288a043

Browse files
committed
fix: Remove trailing whitespace from test suite expansion
Fix pylint errors (C0303: trailing-whitespace) on lines 194, 199, and 201 in toolchain/mfc/test/cases.py. Linter now passes with 10.00/10 rating.
1 parent e5cf0be commit 288a043

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

toolchain/mfc/test/cases.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,14 @@ def alter_time_integrators():
191191
# Test different Runge-Kutta time integrators
192192
# time_stepper: 1=Euler, 2=RK2, 3=RK3 (default), 4=RK4, 5=RK5, 23=TVD-RK3
193193
for time_stepper in [1, 2, 4, 5, 23]:
194-
cases.append(define_case_d(stack, f"time_stepper={time_stepper}",
194+
cases.append(define_case_d(stack, f"time_stepper={time_stepper}",
195195
{'time_stepper': time_stepper, 't_step_stop': 5}))
196196

197197
def alter_cfl_modes():
198198
# Test CFL adaptation and constant CFL modes
199-
cases.append(define_case_d(stack, "cfl_adap_dt=T",
199+
cases.append(define_case_d(stack, "cfl_adap_dt=T",
200200
{'cfl_adap_dt': 'T', 'cfl_target': 0.5, 't_step_stop': 10}))
201-
cases.append(define_case_d(stack, "cfl_const_dt=T",
201+
cases.append(define_case_d(stack, "cfl_const_dt=T",
202202
{'cfl_const_dt': 'T', 'cfl_target': 0.3, 't_step_stop': 10}))
203203

204204
def alter_model_equations():

0 commit comments

Comments
 (0)