Skip to content

Commit

Permalink
Minor Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
manishvenu committed Sep 27, 2024
1 parent b42e44d commit 2ba990b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regional_mom6/regional_mom6.py
Original file line number Diff line number Diff line change
Expand Up @@ -2219,11 +2219,11 @@ def write_MOM_file(self, MOM_file_dict):
if key not in original_MOM_file_dict.keys():
if MOM_file_dict[key]["override"]:
lines.append(
f"#override {key} = {MOM_file_dict[key]['value']} !{MOM_file_dict[key]["comment"]}\n"
f"#override {key} = {MOM_file_dict[key]['value']} !{MOM_file_dict[key]['comment']}\n"
)
else:
lines.append(
f"{key} = {MOM_file_dict[key]} !{MOM_file_dict[key]["comment"]}\n"
f"{key} = {MOM_file_dict[key]['value']} !{MOM_file_dict[key]['comment']}\n"
)
print(
"Added",
Expand Down

0 comments on commit 2ba990b

Please sign in to comment.