Skip to content

Commit cd57059

Browse files
committed
983 was having the conditional the wrong way
1 parent 98ea838 commit cd57059

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sisl/viz/plotters/xarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def _correct_pandas_string_none(dic: dict[str, DataArray]):
4444
pd.options.future.infer_string = old_infer_string
4545

4646

47-
if int(pd.__version__.split(".")[0]) >= 3:
47+
if int(pd.__version__.split(".")[0]) < 3:
4848

4949
def _correct_pandas_string_none(dic: dict[str, str]):
5050
pass

0 commit comments

Comments
 (0)