Skip to content

Commit 125739f

Browse files
aaditya-paniksimonjayhawkins
authored andcommitted
CLN: #28926 Fix pandas/tests/tseries/offsets/test_offsets_properties (#28972)
1 parent 3b34368 commit 125739f

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Diff for: pandas/tests/tseries/offsets/test_offsets_properties.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636

3737
with warnings.catch_warnings():
3838
warnings.simplefilter("ignore")
39-
min_dt = (pd.Timestamp(1900, 1, 1).to_pydatetime(),)
40-
max_dt = (pd.Timestamp(1900, 1, 1).to_pydatetime(),)
39+
min_dt = pd.Timestamp(1900, 1, 1).to_pydatetime()
40+
max_dt = pd.Timestamp(1900, 1, 1).to_pydatetime()
4141

4242
gen_date_range = st.builds(
4343
pd.date_range,

Diff for: setup.cfg

-3
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,5 @@ ignore_errors=True
226226
[mypy-pandas.tests.tseries.offsets.test_offsets]
227227
ignore_errors=True
228228

229-
[mypy-pandas.tests.tseries.offsets.test_offsets_properties]
230-
ignore_errors=True
231-
232229
[mypy-pandas.tests.tseries.offsets.test_yqm_offsets]
233230
ignore_errors=True

0 commit comments

Comments
 (0)