Skip to content

Commit

Permalink
Linter fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfleming committed Mar 9, 2024
1 parent 30adad4 commit 502ad86
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/jinjanator_plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ class Format(Protocol):
suffixes: Iterable[str] | None
option_names: Iterable[str] | None

def __init__(self, options: Iterable[str] | None) -> None:
... # pragma: no cover
def __init__(self, options: Iterable[str] | None) -> None: ... # pragma: no cover

def parse(self, data_string: str) -> Mapping[str, Any]:
... # pragma: no cover
def parse(self, data_string: str) -> Mapping[str, Any]: ... # pragma: no cover


class FormatOptionUnknownError(Exception):
Expand Down

0 comments on commit 502ad86

Please sign in to comment.