Skip to content

Commit

Permalink
linter errors resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
CocoByte committed Jan 15, 2025
1 parent 604004d commit 8700f35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/registrar/fixtures/fixtures_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,9 @@ def _create_domain_requests(cls, users): # noqa: C901
)
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,
Expand Down

0 comments on commit 8700f35

Please sign in to comment.