Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit eaeef6e

Browse files
committed
Fix typos.
1 parent 448c2e6 commit eaeef6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

keras_preprocessing/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def get_keras_submodule(name):
2020
raise ImportError(
2121
'Can only retrieve "backend" and "utils". '
2222
'Requested: %s' % name)
23-
if _KERAS_BACKEND is None or _KERAS_UTILS is None:
23+
if _KERAS_BACKEND is None:
2424
raise ImportError('You need to first `import keras` '
2525
'in order to use `keras_preprocessing`. '
2626
'For instance, you can do:\n\n'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
```
1818
1919
Keras Preprocessing is compatible with Python 2.7-3.6
20-
and is distributed under the MIT liense.
20+
and is distributed under the MIT license.
2121
'''
2222

2323
setup(name='Keras_Preprocessing',
@@ -28,7 +28,7 @@
2828
author='Keras Team',
2929
url='https://github.com/keras-team/keras-preprocessing',
3030
download_url='https://github.com/keras-team/'
31-
'keras_preprocessing/tarball/1.0.0',
31+
'keras-preprocessing/tarball/1.0.0',
3232
license='MIT',
3333
install_requires=['keras>=2.1.6',
3434
'numpy>=1.9.1',

0 commit comments

Comments
 (0)