We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120ffdd commit f2addc2Copy full SHA for f2addc2
lfric_styling.py
@@ -28,7 +28,6 @@ def lowercase_keywords(file):
28
with open(file, 'r') as fp:
29
lines = fp.read()
30
for keyword in KEYWORDS:
31
- print(keyword)
32
pattern = rf"\b{re.escape(keyword.upper())}\b"
33
lines = re.sub(pattern, convert_to_lower, lines)
34
with open(file, 'w') as fp:
styling.py
@@ -16,6 +16,7 @@
16
'''
17
import re
18
import sys
19
+from fstring_parse import *
20
21
CODE_REPLACEMENTS = [
22
# Replace Fortran 77 style conditional keywords
0 commit comments