From ee06b27e93dd53c23a0aeefdf6b93a93533559cd Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 3 Jul 2022 17:47:23 +0200 Subject: [PATCH] Fix missing space --- src/great_ai/great_ai/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/great_ai/great_ai/context.py b/src/great_ai/great_ai/context.py index 1209299..0747b04 100644 --- a/src/great_ai/great_ai/context.py +++ b/src/great_ai/great_ai/context.py @@ -127,7 +127,7 @@ def _is_in_production_mode(logger: Optional[Logger]) -> bool: if not is_production: logger.info( f"Value of {ENV_VAR_KEY} is `{environment}` which is not equal to `{PRODUCTION_KEY}`" - + "defaulting to development mode ‼️" + + " defaulting to development mode ‼️" ) else: logger.info("Running in production mode ✅")