Skip to content

Commit

Permalink
update cp method
Browse files Browse the repository at this point in the history
  • Loading branch information
hadipourh authored Jan 17, 2022
1 parent b5f52b1 commit 8806c81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/gdcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 86,7 @@ def __init__(self, inputfile_name=None, outputfile_name='output', max_guess=0, m
self.num_of_vars = len(self.variables)
###############################
if (self.max_guess is None) or (self.max_guess > len(self.target_variables)):
if self.notguessed_variables == None:
if self.notguessed_variables is None:
self.max_guess = len(self.target_variables)
else:
self.max_guess = len(self.variables)
Expand Down

0 comments on commit 8806c81

Please sign in to comment.