From 0806cd2d979ae07393cb786ed5dc6880abba296a Mon Sep 17 00:00:00 2001 From: Lasse Edfast Date: Fri, 19 Sep 2025 09:36:38 +0200 Subject: [PATCH] Minor error --- env_manager/env_manager.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/env_manager/env_manager.py b/env_manager/env_manager.py index 8745698..c695c1f 100644 --- a/env_manager/env_manager.py +++ b/env_manager/env_manager.py @@ -47,10 +47,10 @@ def print_env(): """ Print all environment variables from ArangoDB 'enviroment' collection to the terminal. """ - for key, value in get_env().items(): - if isinstance(value, dict): - continue - print(f"{key}: {value}") + for key, value in get_env().items(): + if isinstance(value, dict): + continue + print(f"{key}: {value}") def print_info(): """