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/user | |
parent | 07c2b124e4348b15f1e5ec18c6cdfd77248c6bc8 (diff) |
fix ugly horizontal alignment by dprint
Diffstat (limited to 'api/user')
-rw-r--r-- | api/user/password.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/user/password.py b/api/user/password.py index 731f7e4..2abbde6 100644 --- a/api/user/password.py +++ b/api/user/password.py @@ -10,7 +10,7 @@ def index(): data = request.get_json() if not data["password"] or \ - not data["newPassword"]: + not data["newPassword"]: return "", 400 return {}, 200 |