Fix typo in config exception string (#1418)

This commit is contained in:
AbdulHamid Merii 2025-05-19 18:27:59 +01:00 committed by GitHub
parent 25df3b4c75
commit 5a5ff31a5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,7 +89,7 @@ class Config(object):
print("Config env:%s" % str(self._env))
if not self._env:
raise ValueError("Missing environment in either init of environment variable")
raise ValueError("Missing environment in either init or environment variable")
if self._env not in get_options(Environment):
raise ValueError("Invalid environment %s" % env)
if relative_to is not None: