Skip to content

Commit 0ae5cd7

Browse files
committed
Fix pre-commit.
1 parent 801be15 commit 0ae5cd7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pytask_latex/config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
from __future__ import annotations
33

44
from typing import Any
5-
from typing import Callable
65

76
from pytask import hookimpl
87

98

109
@hookimpl
11-
def pytask_parse_config(config):
10+
def pytask_parse_config(config: dict[str, Any]) -> None:
1211
"""Register the latex marker in the configuration."""
1312
config["markers"]["latex"] = "Tasks which compile LaTeX documents."
1413
config["infer_latex_dependencies"] = config.get("infer_latex_dependencies", True)

0 commit comments

Comments
 (0)