We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0043f50 commit 426506cCopy full SHA for 426506c
core/config.py
@@ -55,9 +55,10 @@ def populate_cache(self):
55
pass
56
finally:
57
data.update(os.environ)
58
- data = {k.lower(): v for k, v in data.items()
59
- if k.lower() in self.valid_keys}
60
- self.cache = data
+ self.cache = {
+ k.lower(): v for k, v in data.items()
+ if k.lower() in self.valid_keys
61
+ }
62
63
async def update(self, data=None):
64
"""Updates the config with data from the cache"""
0 commit comments