Skip to content

1.27.0

Choose a tag to compare

@dantownsend dantownsend released this 03 Jun 21:22
· 61 commits to master since this release

Improved auto completion / typo detection for column arguments.

For example:

  class Band(Table):
      name = Varchar(nul=True)  # linters will now warn that nul is a typo (should be null)

Thanks to @sinisaos for this.