Skip to content

Commit

Permalink
Fix missing import for json module (fastai#509)
Browse files Browse the repository at this point in the history
json module is used in ddg search and so that method fails since json module is not imported
  • Loading branch information
v-ahuja authored Apr 16, 2022
1 parent 035016f commit bd3ac26
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
from pandas.api.types import CategoricalDtype

import matplotlib as mpl
import json

# mpl.rcParams['figure.dpi']= 200
mpl.rcParams['savefig.dpi']= 200
mpl.rcParams['font.size']=12
Expand Down

0 comments on commit bd3ac26

Please sign in to comment.