Skip to content

Commit

Permalink
remove prints, oops
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Jan 31, 2025
1 parent 971d43f commit 99bc067
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions py-polars/polars/testing/parametric/strategies/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,13 +231,10 @@ def series(
)
)

print(values)
print(dtype)
s = Series(name=name, values=values, dtype=dtype)

# Apply masking out of values
if do_mask_out:
print("hi")
values = draw(
st.lists(
st.booleans(),
Expand All @@ -252,7 +249,6 @@ def series(

# Apply chunking
if allow_chunks and size > 1 and draw(st.booleans()):
print("hi2")
split_at = size // 2
s = s[:split_at].append(s[split_at:])

Expand Down

0 comments on commit 99bc067

Please sign in to comment.