linter errors resolved

This commit is contained in:
CocoByte 2025-01-14 17:27:32 -07:00
parent 604004d897
commit 8700f35d35
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F

View file

@ -354,9 +354,9 @@ class DomainRequestFixture:
) )
if num_additional_requests_to_make > 0: if num_additional_requests_to_make > 0:
for _ in range(num_additional_requests_to_make): for _ in range(num_additional_requests_to_make):
random_user = random.choice(users) random_user = random.choice(users) # nosec
try: try:
random_request_type = random.choice(cls.DOMAINREQUESTS) random_request_type = random.choice(cls.DOMAINREQUESTS) # nosec
# Prepare DomainRequest objects # Prepare DomainRequest objects
domain_request = DomainRequest( domain_request = DomainRequest(
creator=random_user, creator=random_user,