Skip to content

Commit

Permalink
refactor: Add default values to _load_packages helper
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed May 10, 2023
1 parent af44127 commit f104c20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/griffe/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ def _print_data(data: str, output_file: str | IO | None) -> None:
def _load_packages(
packages: Sequence[str],
*,
extensions: Extensions | None,
search_paths: Sequence[str | Path],
docstring_parser: Parser | None,
docstring_options: dict[str, Any] | None,
extensions: Extensions | None = None,
search_paths: Sequence[str | Path] | None = None,
docstring_parser: Parser | None = None,
docstring_options: dict[str, Any] | None = None,
resolve_aliases: bool = True,
resolve_implicit: bool = False,
resolve_external: bool = False,
Expand Down

0 comments on commit f104c20

Please sign in to comment.