Skip to content

Commit 9777b51

Browse files
SnowMasayafchollet
authored andcommitted
fix typo for load array (keras-team#5315)
1 parent 434545a commit 9777b51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keras/utils/io_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def save_array(array, name):
110110

111111
def load_array(name):
112112
if tables is None:
113-
raise ImportError('The use of `save_array` requires '
113+
raise ImportError('The use of `load_array` requires '
114114
'the tables module.')
115115
f = tables.open_file(name)
116116
array = f.root.data

0 commit comments

Comments
 (0)