pradyunsg / furo

A clean customizable documentation theme for Sphinx
https://pradyunsg.me/furo/quickstart
MIT License
2.59k stars 301 forks source link

Move a 'type: ignore' comment, for mypy #812

Closed ferdnyc closed 1 week ago

ferdnyc commented 1 week ago

Trying to run nox -s lint on the project, I discovered that mypy doesn't like one particular return call because the type: ignore comment is on the wrong line.

Output before change

src/furo/__init__.py:311: error: Returning Any from function declared to return "Style"  [no-any-return]
src/furo/__init__.py:312: error: Unused "type: ignore" comment  [unused-ignore]
pradyunsg commented 1 week ago

Thanks @ferdnyc!