(session: nox.Session)
| 212 | |
| 213 | @nox.session() |
| 214 | def ruff(session: nox.Session): |
| 215 | session.install("ruff") |
| 216 | session.run("ruff", "format", "--diff", ".") |
| 217 | session.run("ruff", "check", ".") |
| 218 | |
| 219 | |
| 220 | @nox.session() |
nothing calls this directly
no test coverage detected
searching dependent graphs…