Skip to content

Commit 3435b03

Browse files
authored
Fix mypy typing error in cftime_offsets.py (#2878)
1 parent e7ec087 commit 3435b03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/coding/cftime_offsets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def get_date_type(calendar):
7979

8080
class BaseCFTimeOffset(object):
8181
_freq = None # type: ClassVar[str]
82-
_day_option = None
82+
_day_option = None # type: ClassVar[str]
8383

8484
def __init__(self, n=1):
8585
if not isinstance(n, int):

0 commit comments

Comments
 (0)