mattiasoldani / succolib

A set of handy, Python-based tools for the INSULAb detectors data analysis
https://github.com/mattiasoldani/succolib
MIT License
0 stars 0 forks source link

turn mutable default arguments to immutable #11

Open mattiasoldani opened 4 years ago

mattiasoldani commented 4 years ago

Lists/dictionaries are mutable; on the other hand, function default arguments should be immutable.

Lists have already been replaced by tuples, while dictionaries still have to be corrected.