Skip to content

Commit

Permalink
nit: improve argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Dec 3, 2023
1 parent ba9b39a commit 8f982e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ class Snapshot:
def __init__(
self,
id: str,
filenames: list[str] | None = None,
specs: list[str] | None = None,
render_options: dict | None = None,
with_output_directory: bool = False,
min_version: tuple[int, int] = (3, 7),
warnings: list[str] | None = None,
):
self.id = id
self.specs = filenames or [f"{id}.py"]
self.specs = specs or [f"{id}.py"]
self.render_options = render_options or {}
self.with_output_directory = with_output_directory
self.min_version = min_version
Expand Down

0 comments on commit 8f982e1

Please sign in to comment.