From 8a9badd9caaa8f066e091eeb50ae2a777bb38d3d Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Sun, 7 Apr 2019 23:14:07 -0700 Subject: [PATCH] Fix mypy typing error in cftime_offsets.py --- xarray/coding/cftime_offsets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/coding/cftime_offsets.py b/xarray/coding/cftime_offsets.py index d724554b458..2ee38a20a4d 100644 --- a/xarray/coding/cftime_offsets.py +++ b/xarray/coding/cftime_offsets.py @@ -79,7 +79,7 @@ def get_date_type(calendar): class BaseCFTimeOffset(object): _freq = None # type: ClassVar[str] - _day_option = None + _day_option = None # type: ClassVar[str] def __init__(self, n=1): if not isinstance(n, int):