Fix: Issue with copying variables_scope into complete_scope solved
This commit is contained in:
parent
b33015dc9d
commit
b5f45c97d0
|
@ -228,7 +228,7 @@ def build_variable_scope(rd_variables, rejected, min_max, variables_scope):
|
||||||
>>> completed == complete
|
>>> completed == complete
|
||||||
True
|
True
|
||||||
"""
|
"""
|
||||||
complete_scope = variables_scope
|
complete_scope = variables_scope.copy()
|
||||||
for v in rd_variables:
|
for v in rd_variables:
|
||||||
try:
|
try:
|
||||||
complete_scope[v]
|
complete_scope[v]
|
||||||
|
|
Loading…
Reference in New Issue