Closed fsaad closed 7 years ago
The following line appears to import a global version of seaborn (i.e. not our local fork in https://github.com/probcomp/iventure/tree/master/external/seaborn).
https://github.com/probcomp/iventure/blob/master/src/utils_plot.py#L58
I believe the correct syntax is to use from .seaborn import apionly as sns as shown here: https://github.com/probcomp/iventure/blob/master/src/utils_plot.py#L311
from .seaborn import apionly as sns
@curlette please investigate and address.
The following line appears to import a global version of seaborn (i.e. not our local fork in https://github.com/probcomp/iventure/tree/master/external/seaborn).
https://github.com/probcomp/iventure/blob/master/src/utils_plot.py#L58
I believe the correct syntax is to use
from .seaborn import apionly as sns
as shown here: https://github.com/probcomp/iventure/blob/master/src/utils_plot.py#L311@curlette please investigate and address.