Skip to content

Commit 43599ba

Browse files
Setting num_bytes to DEFAULT_READ_BUFFER_SIZE if it is None originally (resolves #34435)
1 parent 0fb0460 commit 43599ba

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

sdks/python/apache_beam/io/filesystem.py

-4
Original file line numberDiff line numberDiff line change
@@ -296,11 +296,7 @@ def read(self, num_bytes: Optional[int] = None) -> bytes:
296296
raise ValueError('decompressor not initialized')
297297

298298
if num_bytes is None:
299-
<<<<<<< HEAD
300-
num_bytes = DEFAULT_READ_BUFFER_SIZE
301-
=======
302299
num_bytes = DEFAULT_READ_BUFFER_SIZE
303-
>>>>>>> 794bbaa351 (Setting num_bytes to DEFAULT_READ_BUFFER_SIZE if it is None originally (resolves #34435))
304300

305301
self._fetch_to_internal_buffer(num_bytes)
306302
return self._read_from_internal_buffer(

0 commit comments

Comments
 (0)