From 217a3d10e1b7b6c0178f5da2855110d69e7f1153 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nut=CC=A6iu?= Date: Sat, 27 May 2017 22:15:08 +0300 Subject: [PATCH] Improving code style --- src/resources/utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/utilities.py b/src/resources/utilities.py index 7c9acce..034f504 100644 --- a/src/resources/utilities.py +++ b/src/resources/utilities.py @@ -63,7 +63,7 @@ def get_env_variable(variable, fallback): >>> get_env_variable('HOMES', 'fallback') 'fallback' - + >>> import os >>> os.environ['TEST'] = '13' >>> get_env_variable("TEST", "14")