diff --git a/keras_hub/src/models/mobilenet/mobilenet_image_classifier.py b/keras_hub/src/models/mobilenet/mobilenet_image_classifier.py index 0a7160e530..750bbc1245 100644 --- a/keras_hub/src/models/mobilenet/mobilenet_image_classifier.py +++ b/keras_hub/src/models/mobilenet/mobilenet_image_classifier.py @@ -3,8 +3,9 @@ from keras_hub.src.api_export import keras_hub_export from keras_hub.src.models.image_classifier import ImageClassifier from keras_hub.src.models.mobilenet.mobilenet_backbone import MobileNetBackbone -from keras_hub.src.models.mobilenet.mobilenet_image_classifier_preprocessor \ -import MobileNetImageClassifierPreprocessor +from keras_hub.src.models.mobilenet.mobilenet_image_classifier_preprocessor import ( + MobileNetImageClassifierPreprocessor, +) @keras_hub_export("keras_hub.models.MobileNetImageClassifier")