Skip to content

Commit

Permalink
Fix pandas import
Browse files Browse the repository at this point in the history
  • Loading branch information
eachanjohnson committed Oct 5, 2024
1 parent e489524 commit 1c15c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion carabiner/mpl/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from typing import Any, Iterable, Mapping, Tuple, Optional, Union
from functools import wraps

from pandas import DataFrame
try:
import matplotlib.pyplot as plt
except ImportError:
Expand All @@ -13,6 +12,7 @@
"\n\t$ pip install carabiner[mpl]\n")
else:
from matplotlib import axes, cycler, figure, rcParams
from pandas import DataFrame
from tqdm.auto import tqdm

from ..cast import cast
Expand Down

0 comments on commit 1c15c1c

Please sign in to comment.