mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-15 17:17:02 +02:00
lint
This commit is contained in:
parent
c0a967c4ea
commit
550e6df8b1
1 changed files with 1 additions and 3 deletions
|
@ -85,9 +85,7 @@ class OpenIdConnectBackend(ModelBackend):
|
||||||
for key, value in kwargs.items():
|
for key, value in kwargs.items():
|
||||||
# Check if the field is not 'first_name', 'last_name', or 'phone',
|
# Check if the field is not 'first_name', 'last_name', or 'phone',
|
||||||
# or if it's 'first_name' or 'last_name' or 'phone' and the provided value is not empty
|
# or if it's 'first_name' or 'last_name' or 'phone' and the provided value is not empty
|
||||||
if key not in fields_to_check or (
|
if key not in fields_to_check or (key in fields_to_check and value):
|
||||||
key in fields_to_check and value
|
|
||||||
):
|
|
||||||
# Update the corresponding attribute of the user object
|
# Update the corresponding attribute of the user object
|
||||||
setattr(user, key, value)
|
setattr(user, key, value)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue