Skip to content

Commit

Permalink
fix the version check
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Apr 19, 2024
1 parent a3c73ec commit 55ec527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micom/viz/association.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
)
from sklearn.preprocessing import StandardScaler

PANDAS_VERSION = (int(x) for x in pd.__version__.split("."))
PANDAS_VERSION = tuple(int(x) for x in pd.__version__.split("."))


def plot_association(
Expand Down

0 comments on commit 55ec527

Please sign in to comment.