mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[mod] remove useless addition
This commit is contained in:
parent
cc9364f37e
commit
02c974e8ca
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ def app_list(offset=None, limit=None, filter=None, raw=False, installed=False, w
|
|||
app_dict[app]['repository'] = None
|
||||
|
||||
# ???
|
||||
if not (len(app_dict) > (0 + offset) and limit > 0):
|
||||
if not (len(app_dict) > offset and limit > 0):
|
||||
return {'apps': list_dict} if not raw else list_dict
|
||||
|
||||
# Sort app list
|
||||
|
|
Loading…
Add table
Reference in a new issue