Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd committed Jan 14, 2025
1 parent 20982ab commit f5bf046
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mkdocs_bibtex/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def __init__(self, bib_files: list[str], csl_file: str):
raise ValueError("Pandoc version 2.11 or higher is required for this registry")

Check warning on line 85 in src/mkdocs_bibtex/registry.py

View check run for this annotation

Codecov / codecov/patch

src/mkdocs_bibtex/registry.py#L85

Added line #L85 was not covered by tests

# Cache for formatted citations
self._inline_cache = {}
self._reference_cache = {}
self._inline_cache: dict[str, str] = {}
self._reference_cache: dict[str, str] = {}

def inline_text(self, citation_block: CitationBlock) -> str:
"""Returns cached inline citation text"""
Expand Down

0 comments on commit f5bf046

Please sign in to comment.