Skip to content

Commit

Permalink
Fixing Xenon static check
Browse files Browse the repository at this point in the history
  • Loading branch information
galvana committed Dec 28, 2024
1 parent cd6e855 commit d332e40
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions noxfiles/ci_nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ def xenon(session: nox.Session) -> None:
"src",
"tests",
"scripts",
"--max-absolute B",
"--max-modules B",
"--max-average A",
"--ignore 'data, docs'",
"--exclude src/fides/_version.py",
"--max-absolute=B",
"--max-modules=B",
"--max-average=A",
"--ignore=data,docs",
"--exclude=src/fides/_version.py",
)
session.run(*command)
session.run(*command, success_codes=[0, 1])


##################
Expand Down

0 comments on commit d332e40

Please sign in to comment.