Skip to content

Commit

Permalink
Fix tree exporter utilities import (#459)
Browse files Browse the repository at this point in the history
Fix tree exporter utilities import
  • Loading branch information
gregorybchris authored May 6, 2021
1 parent b53c0e3 commit 4a409cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion econml/_tree_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
matplotlib.use('Agg')
import matplotlib.pyplot as plt
except ImportError as exn:
from ..utilities import MissingModule
from .utilities import MissingModule

# make any access to matplotlib or plt throw an exception
matplotlib = plt = MissingModule("matplotlib is no longer a dependency of the main econml package; "
Expand Down

0 comments on commit 4a409cd

Please sign in to comment.