diff options
author | neodarz <neodarz@neodarz.net> | 2020-04-11 19:58:59 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2020-04-11 19:58:59 +0200 |
commit | c6428e5eff5fe2665f85ec72e8fc05e53c3cd194 (patch) | |
tree | f5891b38c3fd3858b4f099eadcdf5b7004874133 | |
parent | e2aabaaf0f8acbd64017ae89ddfa537d1d810350 (diff) | |
download | pyfunkwhale-c6428e5eff5fe2665f85ec72e8fc05e53c3cd194.tar.xz pyfunkwhale-c6428e5eff5fe2665f85ec72e8fc05e53c3cd194.zip |
Be more explicite in build params documentation
-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 99dcfae..255d9d1 100644 --- a/pyfunkwhale/funkwhale.py +++ b/pyfunkwhale/funkwhale.py @@ -16,8 +16,8 @@ class Funkwhale(object): def _build_params(self, arguments): """ Build params dict for python-requests. Not that all key who start - with an underscore are treated as par of the uri and are not in - the params dict. + with an underscore are treated as par of the endpoint uri and are not + as uri parameters. """ params = {} for k, v in arguments.items(): |