You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Change every bare `# type: ignore` into `# type: ignore[reason]`,
where the specific reason is verified by mypy.
- Use separate `# type: ignore[X]` and `# type: ignore[Y]` for
different parts of statement where a single bare suppression was
doing double duty, with each suppression only on the specific
parts (splitting the statement into multiple lines for this).
- Use the same suppression twice on very long statements where only
specific parts need suppressions.
This also formats all these comments with the same spacing (most
but not all already were). This makes them easier to grep for.
0 commit comments