We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 801be15 commit 0ae5cd7Copy full SHA for 0ae5cd7
src/pytask_latex/config.py
@@ -2,13 +2,12 @@
2
from __future__ import annotations
3
4
from typing import Any
5
-from typing import Callable
6
7
from pytask import hookimpl
8
9
10
@hookimpl
11
-def pytask_parse_config(config):
+def pytask_parse_config(config: dict[str, Any]) -> None:
12
"""Register the latex marker in the configuration."""
13
config["markers"]["latex"] = "Tasks which compile LaTeX documents."
14
config["infer_latex_dependencies"] = config.get("infer_latex_dependencies", True)
0 commit comments