Skip to content

Commit 42f1c6f

Browse files
generatedunixname647790274085263facebook-github-bot
generatedunixname647790274085263
authored andcommitted
[codemod][py3.12] Convert dataclasses mutable default values to use default_factory
Summary: As of [Python 3.11](https://docs.python.org/3.11/whatsnew/3.11.html#dataclasses), dataclasses now only allow defaults that are hashable. Using mutable (non-hashable) default values under Python 3.11+ will cause a runtime error: ``` ValueError: mutable default <class 'problematic.ClassName'> for field <field> is not allowed: use default_factory ``` This codemod attempts to automatically convert mutable defaults to use `default_factory` NOTE: The change is not semantically equivalent to before the change. Before, all dataclass instances with a mutable default value were sharing the same instance. This change results each dataclass instance using a new instance of the mutable value. It is likely that the before state was a latent bug, but it's still a behavior change! Reviewed By: itamaro Differential Revision: D72111785 fbshipit-source-id: fb6d3e1c7fab3f3d2452d6335233fec767551eef
1 parent 528cb73 commit 42f1c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mmf/models/transformers/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class BaseTransformerModalityConfig:
3838
# Encoder to be used to encode this particular modality
3939
# This is actually: Union[EncoderFactory.Config, Encoder.Config]
4040
# NOTE: Waiting on https://github.com/omry/omegaconf/issues/144
41-
encoder: Any = IdentityEncoder.Config()
41+
encoder: Any = field(default_factory=lambda: IdentityEncoder.Config())
4242
# when type is text, whether to consume raw text or intermediate representations
4343
# from frozen text encoder. This can be potentially also used by other modalities.
4444
consume_raw: bool = True

0 commit comments

Comments
 (0)