Skip to content

23.4.1

Compare
Choose a tag to compare
@AlexWaygood AlexWaygood released this 13 Apr 10:08
· 102 commits to main since this release
95d65fe
  • Introduce Y055: Unions of the form type[X] | type[Y] can be simplified to type[X | Y]. Similarly, Union[type[X], type[Y]] can be simplified to type[Union[X, Y]]. Contributed by tomasr8.