Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and ml-evs committed Mar 13, 2024
1 parent bb20b1e commit b3925e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydatalab/pydatalab/routes/v0_1/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def save_user(user_id):

update_result = flask_mongo.db.users.update_one(
{"_id": ObjectId(user_id)},
{"$set": {"display_name": display_name, "contact_email": contact_email}}
{"$set": {"display_name": display_name, "contact_email": contact_email}},
)

if update_result.modified_count != 1:
Expand Down

0 comments on commit b3925e7

Please sign in to comment.