Skip to content

Commit

Permalink
Audit: Remove extra print
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Jun 14, 2024
1 parent 6e030d5 commit 19ee6a1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion github_app_geo_project/module/audit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,6 @@ async def _npm_audit_fix(
package_json = json.load(package_file)
for dependencies_type in ("dependencies", "devDependencies"):
for package, version in package_json.get(dependencies_type, {}).items():
print(dependencies_type, package, version)
if version.startswith("^"):
package_json[dependencies_type][package] = version[1:]
with open(os.path.join(directory, "package.json"), "w", encoding="utf-8") as package_file:
Expand Down

0 comments on commit 19ee6a1

Please sign in to comment.