kitzeslab / opensoundscape

Open source, scalable software for the analysis of bioacoustic recordings
http://opensoundscape.org
MIT License
136 stars 15 forks source link

code style: call super() without arguments #1013

Open sammlapp opened 3 months ago

sammlapp commented 3 months ago

in Python 3, it is apparently best practice to call super() rather than super(ClassA,self) in methods of ClassA. This avoids coding errors when changing the class name, by avoiding hard-coding the class name.