rrebase/knboard

View on GitHub
backend/config/env_utils.py

Summary

Maintainability
A
0 mins
Test Coverage
import os

from django.core.exceptions import ImproperlyConfigured


def get_env(env_variable):
    try:
        return os.environ[env_variable]
    except KeyError:
        error_msg = f"Set the {env_variable} environment variable"
        raise ImproperlyConfigured(error_msg)