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 86d95f5 commit c70c52fCopy full SHA for c70c52f
software/__init__.py
@@ -20,7 +20,7 @@ def Setup():
20
if sys.version_info < REQUIRED_VERSION:
21
sys.stderr.write(
22
f"Python version {sys.version_info.major}.{sys.version_info.minor} "
23
- "not supported version {REQUIRED_VERSION[0]}.{REQUIRED_VERSION[1]} "
+ f"not supported version {REQUIRED_VERSION[0]}.{REQUIRED_VERSION[1]} "
24
"or above required - Exiting\n"
25
)
26
sys.exit(os.EX_CONFIG)
@@ -49,7 +49,7 @@ def CheckWorkingDirectory():
49
for directory_name in DATA_PATHS:
50
if not os.path.isdir(directory_name):
51
52
- 'Required directory {directory_name} not found - Exiting\n'
+ f'Required directory {directory_name} not found - Exiting\n'
53
54
55
0 commit comments