Fix: Issue with copying variables_scope into complete_scope solved

This commit is contained in:
Bertrand Benjamin 2019-07-01 11:10:39 +02:00
parent b33015dc9d
commit b5f45c97d0
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ def build_variable_scope(rd_variables, rejected, min_max, variables_scope):
>>> completed == complete
True
"""
complete_scope = variables_scope
complete_scope = variables_scope.copy()
for v in rd_variables:
try:
complete_scope[v]