2022-12-30 14:14:18 -06:00
|
|
|
from typing import TYPE_CHECKING, Optional
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from sphinx.application import Sphinx
|
|
|
|
|
|
|
|
|
2025-01-02 19:09:26 -06:00
|
|
|
def function_to_be_imported(app: Optional['Sphinx']) -> str:
|
2022-12-30 14:14:18 -06:00
|
|
|
"""docstring"""
|