Skip to content

6.7.0-alpha0

Pre-release
Pre-release
Compare
Choose a tag to compare
@thearchitector thearchitector released this 11 Apr 14:22
· 56 commits to elias/typing since this release
c3503bc

Adds backwards-compatible static typing support for use in Python 3.8+ typed contexts.

client: IndicoClient = IndicoClient(IndicoConfig(...))

# this is valid
subs: list[Submission] = client.call(ListSubmission(...))
# this is not, and will throw a typing error 
subs: list[str] = client.call(ListSubmission(...))

What's Changed

Full Changelog: 6.6.0...6.7.0-alpha0