Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
1.27.0 source code.tar.gz | 2025-06-03 | 538.9 kB | |
1.27.0 source code.zip | 2025-06-03 | 771.0 kB | |
README.md | 2025-06-03 | 251 Bytes | |
Totals: 3 Items | 1.3 MB | 0 |
Improved auto completion / typo detection for column arguments.
For example:
:::python
class Band(Table):
name = Varchar(nul=True) # linters will now warn that nul is a typo (should be null)
Thanks to @sinisaos for this.