Skip to content

Commit

Permalink
Changed default of accpresent to true (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
muellch authored Mar 30, 2023
1 parent e9d1b5f commit a1c8bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liskov/src/icon4py/liskov/parsing/deserialise.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def __call__(self, parsed: ts.ParsedDict) -> list[StartStencilData]:
for i, directive in enumerate(directives):
named_args = parsed["content"]["StartStencil"][i]
acc_present = string_to_bool(
pop_item_from_dict(named_args, "accpresent", "false")
pop_item_from_dict(named_args, "accpresent", "true")
)
mergecopy = string_to_bool(
pop_item_from_dict(named_args, "mergecopy", "false")
Expand Down

0 comments on commit a1c8bfd

Please sign in to comment.