Skip to content

Commit

Permalink
Minor bug
Browse files Browse the repository at this point in the history
Signed-off-by: Thanawan Atchariyachanvanit <[email protected]>
  • Loading branch information
thanawan-atc committed Aug 31, 2023
1 parent 04b131b commit 641285e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def test(session, pandas_version: str):

@nox.session(python=["3.8", "3.9", "3.10"])
@nox.parametrize("pandas_version", ["1.5.0"])
def docs(session):
def docs(session, pandas_version: str):
# Run this so users get an error if they don't have Pandoc installed.
session.install("-r", "docs/requirements-docs.txt")
session.install(".")
Expand All @@ -157,7 +157,7 @@ def docs(session):
# required for model autotracing.
@nox.session(python=["3.8", "3.9", "3.10"])
@nox.parametrize("pandas_version", ["1.5.0"])
def trace(session):
def trace(session, pandas_version: str):
session.install(
"-r",
"requirements-dev.txt",
Expand Down

0 comments on commit 641285e

Please sign in to comment.