mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
9 lines
172 B
Python
9 lines
172 B
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from typing import Final
|
|
|
|
FIGURE_CAPTION: Final[str] = './/figure/figcaption/p'
|