Skip to content

Commit

Permalink
CLN: #28926 Fix pandas/tests/tseries/offsets/test_offsets_properties (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
aaditya-panik authored and simonjayhawkins committed Oct 15, 2019
1 parent 3b34368 commit 125739f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/tseries/offsets/test_offsets_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@

with warnings.catch_warnings():
warnings.simplefilter("ignore")
min_dt = (pd.Timestamp(1900, 1, 1).to_pydatetime(),)
max_dt = (pd.Timestamp(1900, 1, 1).to_pydatetime(),)
min_dt = pd.Timestamp(1900, 1, 1).to_pydatetime()
max_dt = pd.Timestamp(1900, 1, 1).to_pydatetime()

gen_date_range = st.builds(
pd.date_range,
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,5 @@ ignore_errors=True
[mypy-pandas.tests.tseries.offsets.test_offsets]
ignore_errors=True

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

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

0 comments on commit 125739f

Please sign in to comment.