mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-15 22:14:15 +02:00
Linting
This commit is contained in:
parent
adecbdcfc7
commit
7c3e03a240
2 changed files with 5 additions and 5 deletions
|
@ -8,12 +8,12 @@ from phonenumber_field.modelfields import PhoneNumberField # type: ignore
|
||||||
class Contact(TimeStampedModel):
|
class Contact(TimeStampedModel):
|
||||||
"""
|
"""
|
||||||
Contact information follows a similar pattern for each contact.
|
Contact information follows a similar pattern for each contact.
|
||||||
|
|
||||||
This model uses signals [as defined in [signals.py](../../src/registrar/signals.py)].
|
This model uses signals [as defined in [signals.py](../../src/registrar/signals.py)].
|
||||||
When a new user is created through Login.gov, a contact object will be created and
|
When a new user is created through Login.gov, a contact object will be created and
|
||||||
associated on the `user` field.
|
associated on the `user` field.
|
||||||
|
|
||||||
If the `user` object already exists, the underlying user object
|
If the `user` object already exists, the underlying user object
|
||||||
will be updated if any updates are made to it through Login.gov.
|
will be updated if any updates are made to it through Login.gov.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
@ -24,10 +24,10 @@ class User(AbstractUser):
|
||||||
but can be customized later.
|
but can be customized later.
|
||||||
|
|
||||||
This model uses signals [as defined in [signals.py](../../src/registrar/signals.py)].
|
This model uses signals [as defined in [signals.py](../../src/registrar/signals.py)].
|
||||||
When a new user is created through Login.gov, a contact object will be created and
|
When a new user is created through Login.gov, a contact object will be created and
|
||||||
associated on the contacts `user` field.
|
associated on the contacts `user` field.
|
||||||
|
|
||||||
If the `user` object already exists, said user object
|
If the `user` object already exists, said user object
|
||||||
will be updated if any updates are made to it through Login.gov.
|
will be updated if any updates are made to it through Login.gov.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue