Skip to content

Commit

Permalink
noxfile: run typing session as part of lint session (#355)
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 authored Sep 5, 2023
1 parent 08263fc commit 440ae14
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 440ae14

Please sign in to comment.