Update meta parameter to accept a list of any type (#2477)

This commit is contained in:
Kumara Guru M 2024-01-30 06:22:28 +05:30 committed by GitHub
parent b6f4422378
commit 3b1443e76f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ def page(
title: str | None = None,
image: str | None = None,
description: str | None = None,
meta: str | None = None,
meta: list[Any] | None = None,
script_tags: list[Any] | None = None,
on_load: Any | list[Any] | None = None,
):