Minor error

main
Lasse Edfast 5 months ago
parent a83f932c7e
commit 0806cd2d97
  1. 8
      env_manager/env_manager.py

@ -47,10 +47,10 @@ def print_env():
""" """
Print all environment variables from ArangoDB 'enviroment' collection to the terminal. Print all environment variables from ArangoDB 'enviroment' collection to the terminal.
""" """
for key, value in get_env().items(): for key, value in get_env().items():
if isinstance(value, dict): if isinstance(value, dict):
continue continue
print(f"{key}: {value}") print(f"{key}: {value}")
def print_info(): def print_info():
""" """

Loading…
Cancel
Save