Skip to content

CLN: Type error fix in tests\tseries\offsets\test_yqm_offsets.py #28996

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Oct 22, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "CLN: Fixed mypy error in test_yqm_offsets.py"
This reverts commit a7b85ed.
  • Loading branch information
lukasbk committed Oct 15, 2019
commit f507f7f46f11f283c0cdc4e33cd87a38ad83794b
3 changes: 1 addition & 2 deletions pandas/tests/tseries/offsets/test_offsets.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from datetime import date, datetime, time as dt_time, timedelta
from typing import Type

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


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

timezones = [
Expand Down