ConradGGit
Results
1
issues of
ConradGGit
Changed instructions on copying lists. Instead of using ```python my_salsa = list(salsa) ``` changed to ```python my_salsa = copy.deepcopy(salsa) ``` This is because using `list()` is less robust. The goal...
type:discussion