Skip to content

Commit

Permalink
Apply changes made by linters
Browse files Browse the repository at this point in the history
  • Loading branch information
felddy committed Mar 13, 2024
1 parent 38c1022 commit 15f04cb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_data_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,7 @@ class Meta:
)
# create a set of 1 to 3 random scan types from the ScanType enum
scan_types = factory.LazyFunction(
lambda: {
random.choice(list(ScanType)) for _ in range(random.randint(1, 3))
}
lambda: {random.choice(list(ScanType)) for _ in range(random.randint(1, 3))}
)


Expand Down

0 comments on commit 15f04cb

Please sign in to comment.