Skip to content

Commit 55ec527

Browse files
committed
fix the version check
1 parent a3c73ec commit 55ec527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

micom/viz/association.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
)
2323
from sklearn.preprocessing import StandardScaler
2424

25-
PANDAS_VERSION = (int(x) for x in pd.__version__.split("."))
25+
PANDAS_VERSION = tuple(int(x) for x in pd.__version__.split("."))
2626

2727

2828
def plot_association(

0 commit comments

Comments
 (0)