Skip to content

Commit 9b046ef

Browse files
remove \ from f-string
1 parent 9a0b28b commit 9b046ef

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lfric_macros/check_macro_chains.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ def compare_tags(before, after, path, errors):
9595
"after tag.\nThere should be 2 of these - the beginning of the "
9696
"chain and the end of the chain.\nThis is likely a typo in the tags in "
9797
"the versions.py file. The identified tags were:\n"
98-
# f"{'\n'.join(x for x in single_tags)}"
99-
)
98+
) + "\n".join(x for x in single_tags)
10099

101100

102101
def main():

0 commit comments

Comments
 (0)