Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove negative language from Models documentation #8263

Merged
merged 3 commits into from Nov 30, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/concepts/models.md
Expand Up @@ -1222,8 +1222,8 @@ values of instance attributes will raise errors. See the [API reference][pydanti
This config flag is deprecated in Pydantic V2, and has been replaced with `frozen`.

!!! warning
Immutability in Python is never strict. If developers are determined/stupid they can always
modify a so-called "immutable" object.
Immutability in Python is never strict. Developers have the ability to modify objects
amandahla marked this conversation as resolved.
Show resolved Hide resolved
that are conventionally considered "immutable" if they choose to do so.

```py
from pydantic import BaseModel, ConfigDict, ValidationError
Expand Down