File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ def st_comp_with_com_fac(draw):
182182 # select at most 20 lists (returned numbers),
183183 # each having at most 30 primes (factors) including none (then the number
184184 # will be 1)
185- comp_primes = draw (
185+ comp_primes = draw ( # pragma: no branch
186186 st .integers (min_value = 1 , max_value = 20 ).flatmap (
187187 lambda n : st .lists (
188188 st .lists (st .sampled_from (primes ), max_size = 30 ),
@@ -225,7 +225,7 @@ def st_comp_no_com_fac(draw):
225225
226226 # select at most 20 lists, each having at most 30 primes
227227 # selected from the leftover_primes list
228- number_primes = draw (
228+ number_primes = draw ( # pragma: no branch
229229 st .integers (min_value = 1 , max_value = 20 ).flatmap (
230230 lambda n : st .lists (
231231 st .lists (st .sampled_from (leftover_primes ), max_size = 30 ),
You can’t perform that action at this time.
0 commit comments