Skip to content

Commit

Permalink
fix: change default bool value
Browse files Browse the repository at this point in the history
  • Loading branch information
RaczeQ committed Oct 22, 2024
1 parent f5c175f commit f252c60
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
12 changes: 4 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,15 @@ repos:
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
# TODO: Switch back to upstream docformatter
# after https://github.com/PyCQA/docformatter/issues/289 is fixed
- repo: https://github.com/s-weigand/docformatter
rev: 1ec30b7
- repo: https://github.com/PyCQA/docformatter
rev: eb1df34
# rev: v1.7.5
hooks:
- id: docformatter
additional_dependencies: [tomli]
args: [--in-place, --config, ./pyproject.toml]
# - repo: https://github.com/PyCQA/docformatter
# rev: v1.7.5
# hooks:
# - id: docformatter
# additional_dependencies: [tomli]
# args: ["--in-place", "--config", "./pyproject.toml"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.1
hooks:
Expand Down
1 change: 1 addition & 0 deletions overturemaestro/data_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def download_data_for_multiple_types(
working_directory: Union[str, Path] = "files",
) -> list[Path]: ...


@overload
def download_data_for_multiple_types(
theme_type_pairs: list[tuple[str, str]],
Expand Down
2 changes: 1 addition & 1 deletion overturemaestro/release_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def load_release_index(
*,
geometry_filter: Optional[BaseGeometry] = None,
remote_index: bool = False,
skip_index_download: bool = True,
skip_index_download: bool = False,
) -> gpd.GeoDataFrame:
"""
Load release index as a GeoDataFrame.
Expand Down

0 comments on commit f252c60

Please sign in to comment.