diff options
author | neodarz <neodarz@neodarz.net> | 2020-04-11 20:22:41 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2020-04-11 20:23:50 +0200 |
commit | 7591de1343524944f2fe1282c159e663016a1e52 (patch) | |
tree | dbadc74ce59b3a845611e9d120e11c74b629f2ee | |
parent | 6b39312fa2c7f23c624490168da7089e8e430281 (diff) | |
download | pyfunkwhale-7591de1343524944f2fe1282c159e663016a1e52.tar.xz pyfunkwhale-7591de1343524944f2fe1282c159e663016a1e52.zip |
Fix typo in function name
-rw-r--r-- | pyfunkwhale/funkwhale.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyfunkwhale/funkwhale.py b/pyfunkwhale/funkwhale.py index 6b63227..fc1b4d6 100644 --- a/pyfunkwhale/funkwhale.py +++ b/pyfunkwhale/funkwhale.py @@ -55,8 +55,8 @@ class Funkwhale(object): return self.client.call(f'/artists/{_id}', 'get', params).json() - def artist_librairies(self, _id: int, page: int = None, - page_size: int = None): + def artist_libraries(self, _id: int, page: int = None, + page_size: int = None): """ List available user libraries containing work from this artist """ |