Update syrupy to 4.5.0 (#100283)

This commit is contained in:
Franck Nijhof 2023-09-13 14:40:01 +02:00 committed by GitHub
parent 38e013a90e
commit afa0152261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,7 @@ pytest-xdist==3.3.1
pytest==7.3.1 pytest==7.3.1
requests_mock==1.11.0 requests_mock==1.11.0
respx==0.20.2 respx==0.20.2
syrupy==4.2.1 syrupy==4.5.0
tqdm==4.66.1 tqdm==4.66.1
types-aiofiles==22.1.0 types-aiofiles==22.1.0
types-atomicwrites==1.4.5.1 types-atomicwrites==1.4.5.1

View File

@ -85,6 +85,7 @@ class HomeAssistantSnapshotSerializer(AmberDataSerializer):
*, *,
depth: int = 0, depth: int = 0,
exclude: PropertyFilter | None = None, exclude: PropertyFilter | None = None,
include: PropertyFilter | None = None,
matcher: PropertyMatcher | None = None, matcher: PropertyMatcher | None = None,
path: PropertyPath = (), path: PropertyPath = (),
visited: set[Any] | None = None, visited: set[Any] | None = None,
@ -125,6 +126,7 @@ class HomeAssistantSnapshotSerializer(AmberDataSerializer):
serializable_data, serializable_data,
depth=depth, depth=depth,
exclude=exclude, exclude=exclude,
include=include,
matcher=matcher, matcher=matcher,
path=path, path=path,
visited=visited, visited=visited,