Skip to content

Commit c7d30a5

Browse files
committed
#22 - Fix linting issues
1 parent c91d2b3 commit c7d30a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cortexutils/worker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,9 @@ def get_env(self, key, default=None, message=None):
171171
"""Wrapper for getting configuration values from the environment.
172172
:param key: Key of the environment variable to get.
173173
:param default: Default value, if not found. Default: None
174-
:param message: Error message. If given and key not found, exit with error. Default: None"""
174+
:param message: Error message. If given and key not found, exit with error.
175+
Default: None
176+
"""
175177

176178
if key in os.environ:
177179
return os.environ[key]

0 commit comments

Comments
 (0)