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
fix: Fix a mypy failure in the generate action (#162)
The `import uvloop` line here needs to:
* Ignore a pylint `import-outside-toplevel` warning
* Ignore a mypy error if stubs are not present (uvloop is not a
dependency, so it's not actually installed in CI)
These comments were not ignoring both errors, turns out we need to flip
the order.
0 commit comments