Skip to content

Commit

Permalink
Hotfix for new seaborn colorblind style name
Browse files Browse the repository at this point in the history
  • Loading branch information
jharwell committed Oct 2, 2023
1 parent c6716d4 commit 94f9158
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sierra/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def mpl_init():
import matplotlib.pyplot as plt

# Set MPL style
plt.style.use('seaborn-colorblind')
plt.style.use('seaborn-v0_8-colorblind')


# Actually initialize matplotlib
Expand Down
2 changes: 1 addition & 1 deletion sierra/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def df_fill(df: pd.DataFrame, policy: str) -> pd.DataFrame:


@retry(OSError, tries=10, delay=0.100, backoff=1.1) # type:ignore
def pickle_dump(obj: object, f: tp.IO) -> None:
def pickle_dump(obj: object, f) -> None:
pickle.dump(obj, f)


Expand Down

0 comments on commit 94f9158

Please sign in to comment.