DisnakeDev / disnake

An API wrapper for Discord written in Python.
https://docs.disnake.dev
MIT License
715 stars 136 forks source link

fix(typing): complete unparametrized generics #1199

Open Enegg opened 3 months ago

Enegg commented 3 months ago

Summary

This PR aims to complete annotations involving generic types, which were left out unparametrized. Example: foo: Callable => foo: Callable[..., Any] (or stricter)

Checklist