mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[CI] Format code with Black (#1540)
This commit is contained in:
parent
70bf38ce25
commit
e8963d3473
1 changed files with 5 additions and 1 deletions
|
@ -65,7 +65,11 @@ def settings_list(full=False):
|
|||
if full:
|
||||
return settings
|
||||
else:
|
||||
return {k: v for k, v in settings.items() if not k.startswith("security.root_access")}
|
||||
return {
|
||||
k: v
|
||||
for k, v in settings.items()
|
||||
if not k.startswith("security.root_access")
|
||||
}
|
||||
|
||||
|
||||
@is_unit_operation()
|
||||
|
|
Loading…
Add table
Reference in a new issue