mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
🎨 Format Python code with Black
This commit is contained in:
parent
9bc187d404
commit
2d2eab4c30
1 changed files with 7 additions and 1 deletions
|
@ -434,7 +434,13 @@ class ActionsMapParser(BaseActionsMapParser):
|
||||||
if len(tid) == 3:
|
if len(tid) == 3:
|
||||||
_p = self._subparsers.choices[tid[1]]._actions[1].choices[tid[2]]
|
_p = self._subparsers.choices[tid[1]]._actions[1].choices[tid[2]]
|
||||||
elif len(tid) == 4:
|
elif len(tid) == 4:
|
||||||
_p = self._subparsers.choices[tid[1]]._actions[1].choices[tid[2]]._actions[1].choices[tid[3]]
|
_p = (
|
||||||
|
self._subparsers.choices[tid[1]]
|
||||||
|
._actions[1]
|
||||||
|
.choices[tid[2]]
|
||||||
|
._actions[1]
|
||||||
|
.choices[tid[3]]
|
||||||
|
)
|
||||||
|
|
||||||
return getattr(_p, "want_to_take_lock", True)
|
return getattr(_p, "want_to_take_lock", True)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue