Skip to content

Commit d19a916

Browse files
committed
Fix code review comment
Signed-off-by: Gaurav Gupta <gaugup@microsoft.com>
1 parent 21bb3b4 commit d19a916

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dice_ml/explainer_interfaces/explainer_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ def serialize_explainer(self, path):
814814

815815
@staticmethod
816816
def deserialize_explainer(path):
817-
"""Reload the explainer into the memroy by reading the file specified by path."""
817+
"""Reload the explainer into the memory by reading the file specified by path."""
818818
deserialized_exp = None
819819
with open(path, "rb") as pickle_file:
820820
deserialized_exp = pickle.load(pickle_file)

0 commit comments

Comments
 (0)