diff --git a/galore/cli/utils.py b/galore/cli/utils.py index 4628296..350c099 100644 --- a/galore/cli/utils.py +++ b/galore/cli/utils.py @@ -6,7 +6,7 @@ def get_default_style() -> str: """Get appropriate name for seaborn-colorblind, depending on MPL version""" - if Version(matplotlib) < Version("3.6"): + if Version(matplotlib.__version__) < Version("3.6"): return "seaborn-colorblind" return "seaborn-v0_8-colorblind"