diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-16 17:01:16 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-16 17:01:16 +0200 |
commit | 2e58a8597aa14b43835dcc162fc661e21c5c8fe2 (patch) | |
tree | ced66324e723525fb342d44c55c1f26fdc9fd630 /api/hierarchy.py | |
parent | 07c2b124e4348b15f1e5ec18c6cdfd77248c6bc8 (diff) |
fix ugly horizontal alignment by dprint
Diffstat (limited to 'api/hierarchy.py')
-rw-r--r-- | api/hierarchy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/hierarchy.py b/api/hierarchy.py index 87b9db9..247ee9e 100644 --- a/api/hierarchy.py +++ b/api/hierarchy.py @@ -29,7 +29,7 @@ def util_two_id(type="user"): # if there's an explicit_id, validate it using `type` if explicit_id and \ - not valid.validate(explicit_id, type): + not valid.validate(explicit_id, type): explicit_id = None return func(token_id, explicit_id) |