Skip to content

Commit

Permalink
CLN: Type error fix in tests\tseries\offsets\test_yqm_offsets.py (pan…
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbk authored and Mateusz Górski committed Nov 18, 2019
1 parent 3422286 commit bb5d50e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
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
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,3 @@ ignore_errors=True

[mypy-pandas.tests.tseries.offsets.test_offsets]
ignore_errors=True

[mypy-pandas.tests.tseries.offsets.test_yqm_offsets]
ignore_errors=True

0 comments on commit bb5d50e

Please sign in to comment.