Skip to content

Commit

Permalink
Merge pull request #675 from mit-ll-responsible-ai/dependabot/pip/dep…
Browse files Browse the repository at this point in the history
…s/main/pyright-1.1.359

Bump pyright from 1.1.358 to 1.1.359 in /deps
  • Loading branch information
rsokl committed Apr 23, 2024
2 parents 68743ac + 45da02f commit ab2aedd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/requirements-pyright.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyright==1.1.358
pyright==1.1.359
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_implementations.py
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ def _mutable_value(cls, x: _T, *, zen_convert: Optional[ZenConvert] = None) -> _

if cast in {list, tuple, dict}:
x = cls._sanitize_collection(x, convert_dataclass=settings["dataclass"])
return field(default_factory=lambda: cast(x))
return field(default_factory=lambda: cast(x)) # type: ignore
return field(default_factory=lambda: x)

@classmethod
Expand Down

0 comments on commit ab2aedd

Please sign in to comment.