Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and sirosen committed Oct 17, 2024
1 parent 535e809 commit 907a562
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions src/check_jsonschema/cachedownloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ class FailedDownloadError(Exception):


class CacheDownloader:
def __init__(self, cache_dir: str | None = None, disable_cache: bool = False):
def __init__(
self, cache_dir: str | None = None, disable_cache: bool = False
) -> None:
if cache_dir is None:
self._cache_dir = _resolve_cache_dir()
else:
Expand Down Expand Up @@ -170,7 +172,7 @@ def __init__(
downloader: CacheDownloader,
*,
validation_callback: t.Callable[[bytes], t.Any] | None = None,
):
) -> None:
self._file_url = file_url
self._filename = filename or file_url.split("/")[-1]
self._downloader = downloader
Expand Down
4 changes: 2 additions & 2 deletions src/check_jsonschema/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


class _Exit(Exception):
def __init__(self, code: int):
def __init__(self, code: int) -> None:
self.code = code


Expand All @@ -31,7 +31,7 @@ def __init__(
format_opts: FormatOptions | None = None,
traceback_mode: str = "short",
fill_defaults: bool = False,
):
) -> None:
self._schema_loader = schema_loader
self._instance_loader = instance_loader
self._reporter = reporter
Expand Down
2 changes: 1 addition & 1 deletion src/check_jsonschema/cli/param_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def __init__(
encoding: str | None = None,
errors: str | None = "strict",
atomic: bool = False,
):
) -> None:
self.name: str = os.fspath(filename)
self.mode = mode
self.encoding = encoding
Expand Down
2 changes: 1 addition & 1 deletion src/check_jsonschema/transforms/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(
self,
*,
on_data: t.Callable[[list | dict], list | dict] | None = None,
):
) -> None:
self.on_data = on_data

def modify_yaml_implementation(self, implementation: ruamel.yaml.YAML) -> None:
Expand Down

0 comments on commit 907a562

Please sign in to comment.