Skip to content

Commit

Permalink
Fix random samle_values
Browse files Browse the repository at this point in the history
  • Loading branch information
endast committed Nov 14, 2023
1 parent e92f3e1 commit fa645a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fake_vcf/vcf_faker.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(
]

self.sample_values = [
f"{sv}:{random.choice(extra_data)}" for sv in self.sample_values
f"{sv}:{self.random.choice(extra_data)}" for sv in self.sample_values
]

self.avail_samples = deque(
Expand Down

0 comments on commit fa645a5

Please sign in to comment.