- Removes the strict requirement for resolved classes to have `__init__`
methods defined, to add support for `Protocol`s that do not define an
`__init__` method (thus using `*args`, `**kwargs`),
[akhundMurad](https://github.com/akhundMurad)'s contribution.
- Corrects a code smell, replacing an `i` counter with `enumerate`,
[GLEF1X](https://github.com/GLEF1X)'s contribution.