Skip to content

Commit d4eaf50

Browse files
io.open() has become an alias for open()
1 parent 3649b9b commit d4eaf50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zarr/convenience.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def __init__(self, log):
485485
elif callable(log):
486486
self.log_func = log
487487
elif isinstance(log, str):
488-
self.log_file = io.open(log, mode='w')
488+
self.log_file = open(log, mode='w')
489489
self.needs_closing = True
490490
elif hasattr(log, 'write'):
491491
self.log_file = log

0 commit comments

Comments
 (0)