Skip to content

Commit

Permalink
🤖 Lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-branch committed Nov 11, 2023
1 parent 6cb4b26 commit 365cfd9
Showing 1 changed file with 13 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,21 +283,19 @@ def _sequence_mask_helper(draw):

max_len = draw(st.integers(min_value=max_val, max_value=max_val))
dtype = draw(
st.sampled_from(
[
"float16",
"uint8",
"complex128",
"bool",
"float64",
"int8",
"int16",
"complex64",
"float32",
"int32",
"int64",
]
)
st.sampled_from([
"float16",
"uint8",
"complex128",
"bool",
"float64",
"int8",
"int16",
"complex64",
"float32",
"int32",
"int64",
])
)
return in_dtype, lens, max_len, dtype

Expand Down

0 comments on commit 365cfd9

Please sign in to comment.