Skip to content

Commit 4998d58

Browse files
committed
add frozen=False to column
1 parent de00f15 commit 4998d58

File tree

1 file changed

+1
-1
lines changed
  • hypothesis-python/src/hypothesis/extra/pandas

1 file changed

+1
-1
lines changed

hypothesis-python/src/hypothesis/extra/pandas/impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def result(draw):
362362
return result()
363363

364364

365-
@dataclass(slots=True)
365+
@dataclass(slots=True, frozen=False)
366366
class column(Generic[Ex]):
367367
"""Data object for describing a column in a DataFrame.
368368

0 commit comments

Comments
 (0)