Skip to content

Commit

Permalink
CLN: Fixed mypy error in test_yqm_offsets.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbk committed Oct 15, 2019
1 parent 524ce17 commit a7b85ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandas/tests/tseries/offsets/test_offsets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from datetime import date, datetime, time as dt_time, timedelta
from typing import Type

import numpy as np
import pytest
Expand Down Expand Up @@ -92,7 +93,7 @@ def test_to_M8():


class Base:
_offset = None
_offset = None # type: Type[DateOffset]
d = Timestamp(datetime(2008, 1, 2))

timezones = [
Expand Down

0 comments on commit a7b85ed

Please sign in to comment.