diff options
author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-12-16 17:26:16 +0100 |
---|---|---|
committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-12-16 17:26:16 +0100 |
commit | a508d540ac43196edeb4d946dfdf64a1d0a438ed (patch) | |
tree | 7d2b5101dfa91c3d2a81467a1bf58bba26be6362 /searx/engines/soundcloud.py | |
parent | 91f9973227e003604e036278e42a4c6394bf5478 (diff) | |
download | searxng-a508d540ac43196edeb4d946dfdf64a1d0a438ed.tar.gz searxng-a508d540ac43196edeb4d946dfdf64a1d0a438ed.zip |
[fix] pep8
Diffstat (limited to 'searx/engines/soundcloud.py')
-rw-r--r-- | searx/engines/soundcloud.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/searx/engines/soundcloud.py b/searx/engines/soundcloud.py index 390e7ca1f..164a569a3 100644 --- a/searx/engines/soundcloud.py +++ b/searx/engines/soundcloud.py @@ -20,7 +20,12 @@ guest_client_id = 'b45b1aa10f1ac2941910a7f0d10f8e28' # search-url url = 'https://api.soundcloud.com/' -search_url = url + 'search?{query}&facet=model&limit=20&offset={offset}&linked_partitioning=1&client_id={client_id}' +search_url = url + 'search?{query}'\ + '&facet=model'\ + '&limit=20'\ + '&offset={offset}'\ + '&linked_partitioning=1'\ + '&client_id={client_id}' # noqa # do search-request |