Skip to content

Commit

Permalink
Copy closed from base_io
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Aug 6, 2024
1 parent 473b56b commit fd6099c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multicsv/subtextio.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def __init__(self, base_io: TextIO, start: int, end: int):
self.base_io.seek(self.start)
self._buffer = self.base_io.read(self.end - self.start)
self.length = len(self._buffer)
self._closed = False
self._closed = base_io.closed

@property
def mode(self) -> str:
Expand Down

0 comments on commit fd6099c

Please sign in to comment.