Skip to content

Commit dd9293b

Browse files
committed
style(verify): strict mypy + ruff compliance for TechEngine
1 parent e6f282f commit dd9293b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/verify/promote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def write_verified_true(abs_path: Path) -> bool:
9999
return True
100100

101101

102-
def load_crossref_cache(path=CROSSREF_CACHE_PATH) -> dict[tuple[str, str], dict[str, Any]]:
102+
def load_crossref_cache(path: Path = CROSSREF_CACHE_PATH) -> dict[tuple[str, str], dict[str, Any]]:
103103
from . import ledger
104104
out: dict[tuple[str, str], dict[str, Any]] = {}
105105
for e in ledger.iter_entries(path):

0 commit comments

Comments
 (0)