Require explicit item types specification in array schema initializer
Require explicit item types specification in array schema initializer
Before this change it was possible to omit array items type by accident: `Array()`.
Such array was treated as `Array(Any())`.
Now it is required to use explicit syntax `Array(Any())` to define such array.
`Array()` is invalid now and raises TypeError about missing required argument.
Loading
Please sign in to comment