JeffYang52415 commited on
Commit
bcdc739
·
unverified ·
1 Parent(s): 54b075d

ci: fix bandit B101

Browse files
Files changed (1) hide show
  1. pyproject.toml +4 -0
pyproject.toml CHANGED
@@ -74,3 +74,7 @@ check_untyped_defs = true
74
  testpaths = ["tests"]
75
  python_files = ["test_*.py"]
76
  addopts = "-ra -q --cov=llmdataparser --cov-report=term-missing"
 
 
 
 
 
74
  testpaths = ["tests"]
75
  python_files = ["test_*.py"]
76
  addopts = "-ra -q --cov=llmdataparser --cov-report=term-missing"
77
+
78
+ [tool.bandit]
79
+ exclude_dirs = ["tests"]
80
+ skips = ["B101"]