Skip to content

Commit 8dad811

Browse files
committed
chore: removed prints
Signed-off-by: Carl Flottmann <[email protected]>
1 parent acf655d commit 8dad811

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/malware_analyzer/pypi/test_pypi_sourcecode_analyzer.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ def get_rule_ids_list(path: str) -> set[str]:
2929
"""
3030
with open(path, encoding="utf8") as semgrep_yaml:
3131
ruleset: dict[str, list] = yaml.safe_load(semgrep_yaml.read())
32-
__import__("pprint").pprint(ruleset)
3332
return {rule["id"] for rule in ruleset["rules"]}
3433

3534

@@ -215,8 +214,6 @@ def test_disabling_rulesets(
215214

216215
result, analysis = analyzer.analyze(pypi_package_json)
217216

218-
print(analysis)
219-
220217
assert result == HeuristicResult.FAIL
221218

222219
# ensure the type is correct

0 commit comments

Comments
 (0)