📝 Update docs (#1003)

This commit is contained in:
Alejandra
2024-07-16 22:03:52 -05:00
committed by GitHub
parent b8d7f4ff67
commit da1253c21f
4 changed files with 4 additions and 4 deletions

View File

@ -145,7 +145,7 @@ Let's now see with more detail these field/column declarations.
### Optional Fields, Nullable Columns
Let's start with `age`, notice that it has a type of `Optional[int]`.
Let's start with `age`, notice that it has a type of `int | None (or Optional[int])`.
And we import that `Optional` from the `typing` standard module.