Skip to content

Commit 40119bf

Browse files
authored
change the type of ogp_custom_meta_tags to tuple (#10603)
* change `ogp_custom_meta_tags` to a tuple * [skip-ci]
1 parent e9a1de4 commit 40119bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,11 @@
282282
# configuration for sphinxext.opengraph
283283
ogp_site_url = "https://docs.xarray.dev/en/latest/"
284284
ogp_image = "https://docs.xarray.dev/en/stable/_static/logos/Xarray_Logo_RGB_Final.png"
285-
ogp_custom_meta_tags = [
285+
ogp_custom_meta_tags = (
286286
'<meta name="twitter:card" content="summary_large_image" />',
287287
'<meta property="twitter:site" content="@xarray_dev" />',
288288
'<meta name="image" property="og:image" content="https://docs.xarray.dev/en/stable/_static/logos/Xarray_Logo_RGB_Final.png" />',
289-
]
289+
)
290290

291291
# Redirects for pages that were moved to new locations
292292
rediraffe_redirects = {

0 commit comments

Comments
 (0)