Skip to content

Commit ac79f0a

Browse files
author
Thomas Zilio
committed
fix: Typo
1 parent d6c5687 commit ac79f0a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

zcollection/collection/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ def update(
584584
if not callable(func):
585585
raise TypeError('func must be a callable')
586586

587-
# Delayed has to be True of dask is disabled
587+
# Delayed has to be True if dask is disabled
588588
if not distributed:
589589
delayed = False
590590

zcollection/collection/abc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ def load(
620620
... filters=lambda keys: keys["year"] == 2019 and
621621
... keys["month"] == 3 and keys["day"] % 2 == 0)
622622
"""
623-
# Delayed has to be True of dask is disabled
623+
# Delayed has to be True if dask is disabled
624624
if not distributed:
625625
delayed = False
626626

zcollection/view/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def load(
410410
>>> view.load(filters=lambda x: x["time"] == "2020-01-01")
411411
"""
412412
_assert_have_variables(self.metadata)
413-
# Delayed has to be True of dask is disabled
413+
# Delayed has to be True if dask is disabled
414414
if not distributed:
415415
delayed = False
416416

0 commit comments

Comments
 (0)