🎨 Format Python code with Black

This commit is contained in:
alexAubin 2023-01-05 18:15:55 +00:00 committed by GitHub
parent 9bc187d404
commit 2d2eab4c30

View file

@ -434,7 +434,13 @@ class ActionsMapParser(BaseActionsMapParser):
if len(tid) == 3:
_p = self._subparsers.choices[tid[1]]._actions[1].choices[tid[2]]
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)