Skip to content

Commit

Permalink
CLN: pandas-dev#28926 Fix pandas/tests/tseries/offsets/test_offsets_p…
Browse files Browse the repository at this point in the history
…roperties (pandas-dev#28972)
  • Loading branch information
Aaditya Panikath authored and proost committed Dec 19, 2019
1 parent a7d5a52 commit 0a8461f
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 0a8461f

Please sign in to comment.