Skip to content

Commit

Permalink
noxfile: run typing session as part of lint session
Browse files Browse the repository at this point in the history
`nox -e lint` runs the `static` and `formatters` sessions, but it does
not run `nox -e typing` due to an oversight in the initial PR.
  • Loading branch information
gotmax23 committed Sep 3, 2023
1 parent 08263fc commit c58fe06
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def typing(session: nox.Session):

@nox.session
def lint(session: nox.Session):
session.notify("typing")
session.notify("static")
session.notify("formatters")

Expand Down

0 comments on commit c58fe06

Please sign in to comment.