mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-04 08:52:16 +02:00
linter errors resolved
This commit is contained in:
parent
604004d897
commit
8700f35d35
1 changed files with 2 additions and 2 deletions
|
@ -354,9 +354,9 @@ class DomainRequestFixture:
|
|||
)
|
||||
if num_additional_requests_to_make > 0:
|
||||
for _ in range(num_additional_requests_to_make):
|
||||
random_user = random.choice(users)
|
||||
random_user = random.choice(users) # nosec
|
||||
try:
|
||||
random_request_type = random.choice(cls.DOMAINREQUESTS)
|
||||
random_request_type = random.choice(cls.DOMAINREQUESTS) # nosec
|
||||
# Prepare DomainRequest objects
|
||||
domain_request = DomainRequest(
|
||||
creator=random_user,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue