Skip to content

Commit 2c6e448

Browse files
committed
PYLINT: fix long lines
1 parent 8814275 commit 2c6e448

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

ush/create_ufs_configure_file.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ def create_ufs_configure_file(run_dir,cfg):
3131

3232
# Set necessary variables for each coupled configuration
3333

34-
atm_end = str(int(cfg["PE_MEMBER01"]) - int(cfg["FIRE_NUM_TASKS"] * cfg['OMP_NUM_THREADS_FIRE']) - 1)
34+
atm_end = str(int(cfg["PE_MEMBER01"]) -
35+
int(cfg["FIRE_NUM_TASKS"] * cfg['OMP_NUM_THREADS_FIRE']) - 1)
3536
aqm_end = str(int(cfg["LAYOUT_X"]) * int(cfg["LAYOUT_Y"]) - 1)
36-
fire_start = str(int(cfg["PE_MEMBER01"]) - int(cfg["FIRE_NUM_TASKS"] * cfg['OMP_NUM_THREADS_FIRE']))
37+
fire_start = str(int(cfg["PE_MEMBER01"]) -
38+
int(cfg["FIRE_NUM_TASKS"] * cfg['OMP_NUM_THREADS_FIRE']))
3739
fire_end = str(int(cfg["PE_MEMBER01"]) - 1)
3840

3941
atm_petlist_bounds = f'0 {atm_end}'

0 commit comments

Comments
 (0)