Skip to content

Commit

Permalink
ci: fixed inv
Browse files Browse the repository at this point in the history
  • Loading branch information
asafgardin committed Dec 12, 2023
1 parent 42bd27c commit a35357c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def lint(tsk, fix=False):
flags = "--fix" if fix else ""
cmd = " && ".join(
[
f"ruff *.py {flags} ai21_tokenizer/ tests/",
f"ruff *.py {flags} ai21/ tests/",
]
)
tsk.run(cmd, echo=True, pty=True)
Expand Down Expand Up @@ -57,7 +57,7 @@ def staticcheck(tsk):
"""
Run static check on the projects files
"""
cmd = "mypy ai21_tokenizer tests"
cmd = "mypy ai21 tests"
tsk.run(cmd, echo=True, pty=True)


Expand All @@ -66,7 +66,7 @@ def isort(tsk):
"""
Run static check on the projects files
"""
cmd = "isort ai21_tokenizer tests"
cmd = "isort ai21 tests"
tsk.run(cmd, echo=True, pty=True)


Expand Down

0 comments on commit a35357c

Please sign in to comment.