You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from vyper import Vyper
from os import environ as env
env['CLASS.KEY2'] = 'newval2'
v = Vyper(key_delimiter='.')
v.set_default('class.key1', 'val1')
v.set_default('class.key2', 'val2')
v.set_default('class.key3', 'val3')
v.bind_env('class.key1')
v.bind_env('class.key2')
v.bind_env('class.key3')
print(v.get('class.key1'))
The expected behaviour would be to output val1 but instead the following stack trace occurs:
Traceback (most recent call last):
File "test.py", line 16, in <module>
print(v.get('class.key1'))
File "/home/dandb/anaconda3/lib/python3.7/site-packages/vyper/vyper.py", line 186, in get
val = self._find(lowercase_key)
File "/home/dandb/anaconda3/lib/python3.7/site-packages/vyper/vyper.py", line 409, in _find
source = self._find(path[0])
File "/home/dandb/anaconda3/lib/python3.7/site-packages/vyper/vyper.py", line 382, in _find
self._set_insensitive(item["final_key"], val, temp)
File "/home/dandb/anaconda3/lib/python3.7/site-packages/vyper/vyper.py", line 324, in _set_insensitive
real_key = self._find_real_key(key, source)
File "/home/dandb/anaconda3/lib/python3.7/site-packages/vyper/vyper.py", line 316, in _find_real_key
(real for real in source.keys() if real.lower() == key.lower()), None
AttributeError: 'NoneType' object has no attribute 'keys'
The text was updated successfully, but these errors were encountered:
Consider the following example:
The expected behaviour would be to output
val1
but instead the following stack trace occurs:The text was updated successfully, but these errors were encountered: