From 4d38c8ae04e312cf57c5e6855e51e64da73a748d Mon Sep 17 00:00:00 2001 From: Matthew Griffin <1matthewgriffin@gmail.com> Date: Sat, 26 Feb 2022 00:36:16 -0600 Subject: [PATCH] Change docs for HTMLPage type to say HTMLPage instead of PNGImage Signed-off-by: Matthew Griffin <1matthewgriffin@gmail.com> --- flytekit/types/file/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytekit/types/file/__init__.py b/flytekit/types/file/__init__.py index 81ea1037bb..44841d7e35 100644 --- a/flytekit/types/file/__init__.py +++ b/flytekit/types/file/__init__.py @@ -34,7 +34,7 @@ HDF5EncodedFile = FlyteFile[hdf5] html = typing.TypeVar("html") -#: Can be used to receive or return an PNGImage. The underlying type is a FlyteFile type. This is just a +#: Can be used to receive or return an HTMLPage. The underlying type is a FlyteFile type. This is just a #: decoration and useful for attaching content type information with the file and automatically documenting code. HTMLPage = FlyteFile[html]