mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-03 16:32:15 +02:00
fixed linter issue
This commit is contained in:
parent
c89400a72d
commit
9fdd78bf60
1 changed files with 1 additions and 1 deletions
|
@ -654,7 +654,7 @@ class DomainAddUserView(DomainFormBaseView):
|
|||
domainInfo = domainInfoResults.first()
|
||||
first = ""
|
||||
last = ""
|
||||
if not domainInfo is None:
|
||||
if domainInfo is not None:
|
||||
first = domainInfo.creator.first_name
|
||||
last = domainInfo.creator.last_name
|
||||
full_name = f"{first} {last}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue