Skip to content

Commit 93ceb25

Browse files
committed
Fixed format issues
1 parent 2a624fd commit 93ceb25

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

openmp/runtime/tools/message-converter.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
class TargetPlatform:
2323
"""Convenience class for handling the target platform for configuration/compilation"""
24-
24+
2525
system_override = None
2626
"""
2727
Target system name override by the user.
@@ -30,14 +30,14 @@ class TargetPlatform:
3030

3131
def set_system_override(override_system):
3232
"""
33-
Set a system override for the target.
33+
Set a system override for the target.
3434
Please follow the style from https://docs.python.org/3/library/platform.html#platform.system
3535
"""
3636
TargetPlatform.system_override = override_system
3737

3838
def system():
3939
"""
40-
Target System name.
40+
Target System name.
4141
It follows the conventions from https://docs.python.org/3/library/platform.html#platform.system
4242
"""
4343
if TargetPlatform.system_override is None:
@@ -390,11 +390,11 @@ def main():
390390
"--message", metavar="FILE", help="Generate message file named FILE"
391391
)
392392
parser.add_argument(
393-
"--target-system-override",
394-
metavar="TARGET_SYSTEM_NAME",
393+
"--target-system-override",
394+
metavar="TARGET_SYSTEM_NAME",
395395
help="Target System override.\n"
396396
"By default the target system is the host system\n"
397-
"See possible values at https://docs.python.org/3/library/platform.html#platform.system"
397+
"See possible values at https://docs.python.org/3/library/platform.html#platform.system",
398398
)
399399
parser.add_argument("inputfile")
400400
commandArgs = parser.parse_args()

0 commit comments

Comments
 (0)