diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2021-12-25 23:47:00 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2021-12-25 23:47:00 +0100 |
commit | 10aa8140b5e52cc0cf8cea794daf81fb0ffdcad3 (patch) | |
tree | 9bf5e9231ff703b90ed0dd6790588de95d14c2b9 /abcontroller.py | |
parent | 71593d438dff1a54986c94b469faa31c4581f6c7 (diff) |
Renamed some functions, added known issue
Diffstat (limited to 'abcontroller.py')
-rw-r--r-- | abcontroller.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/abcontroller.py b/abcontroller.py index 2e08936..80f6a4d 100644 --- a/abcontroller.py +++ b/abcontroller.py @@ -19,7 +19,7 @@ class ABController: self._songLimits = self._limits[path] self._currentLimits = None - def addLimits(self, aLimit, bLimit, song=None): + def storeLimits(self, aLimit, bLimit, song=None): if song is not None: self._ensureSongExists(song) songLimits = self._limits[song] @@ -32,7 +32,7 @@ class ABController: ab = _AB(aLimit, bLimit) songLimits.append(ab) - def setCurrentLimits(self, index): + def loadLimits(self, index): if not self._songLimits: return |