diff options
Diffstat (limited to 'tests/test_builders/xpath_data.py')
-rw-r--r-- | tests/test_builders/xpath_data.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_builders/xpath_data.py b/tests/test_builders/xpath_data.py new file mode 100644 index 0000000..30f8e07 --- /dev/null +++ b/tests/test_builders/xpath_data.py @@ -0,0 +1,8 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from typing import Final + +FIGURE_CAPTION: Final[str] = ".//figure/figcaption/p" |