Skip to content

Commit

Permalink
FIX: force ModifiablePyproject to be non-slotted (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer authored Jan 24, 2025
1 parent 1d80ad5 commit fa96863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compwa_policy/utilities/pyproject/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def get_supported_python_versions(self) -> list[PythonVersion]:
return get_supported_python_versions(self._document)


@frozen
@frozen(slots=False)
class ModifiablePyproject(Pyproject, AbstractContextManager):
"""Stateful representation of a :code:`pyproject.toml` file.
Expand Down

0 comments on commit fa96863

Please sign in to comment.