Skip to content

Commit

Permalink
Merge pull request #191 from shivaniraochepuri21/master
Browse files Browse the repository at this point in the history
edited a comment - save_list must be a list
  • Loading branch information
4flixt committed Oct 22, 2021
2 parents 08dbb33 + 222845d commit 81189f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion do_mpc/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def save_results(save_list, result_name='results', result_path='./results/', ove
:rtype: None
"""

assert isinstance(save_list, list), 'save_list must be a string.'
assert isinstance(save_list, list), 'save_list must be a list.'
assert isinstance(result_name, str), 'result_name must be a string.'
assert isinstance(result_path, str), 'results_path must be a string.'
assert isinstance(overwrite, bool), 'overwrite must be boolean.'
Expand Down

0 comments on commit 81189f3

Please sign in to comment.