Skip to content

Commit 10af103

Browse files
committed
format
Change-Id: I24304a80e6689b4fcec3155f7274e24db712b402
1 parent 78ec5e8 commit 10af103

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google/generativeai/types/content_types.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
IPython = None
5050

5151
if PIL is not None and IPython is not None:
52-
IMAGE_TYPES = ( PIL.Image.Image, IPython.display.Image)
52+
IMAGE_TYPES = (PIL.Image.Image, IPython.display.Image)
5353
ImageType = Union[PIL.Image.Image, IPython.display.Image]
5454
elif PIL is not None and IPython is None:
5555
IMAGE_TYPES = (PIL.Image.Image,)
@@ -58,8 +58,8 @@
5858
IMAGE_TYPES = (IPython.display.Image,)
5959
ImageType = Union[IPython.display.Image,]
6060
else:
61-
IMAGE_TYPES=()
62-
ImageType=Union
61+
IMAGE_TYPES = ()
62+
ImageType = Union
6363

6464

6565
__all__ = [

0 commit comments

Comments
 (0)