Skip to content

Commit f2addc2

Browse files
removed print lines and added import back to styling.py
1 parent 120ffdd commit f2addc2

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

lfric_styling.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def lowercase_keywords(file):
2828
with open(file, 'r') as fp:
2929
lines = fp.read()
3030
for keyword in KEYWORDS:
31-
print(keyword)
3231
pattern = rf"\b{re.escape(keyword.upper())}\b"
3332
lines = re.sub(pattern, convert_to_lower, lines)
3433
with open(file, 'w') as fp:

styling.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
'''
1717
import re
1818
import sys
19+
from fstring_parse import *
1920

2021
CODE_REPLACEMENTS = [
2122
# Replace Fortran 77 style conditional keywords

0 commit comments

Comments
 (0)