We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68d3f0 commit aeb623eCopy full SHA for aeb623e
socketsecurity/socketcli.py
@@ -274,7 +274,7 @@ def main_code():
274
if len(diff.new_alerts) == 0 or disable_security_issue:
275
new_security_comment = False
276
log.debug("No new alerts or security issue comment disabled")
277
- if (len(diff.new_packages) == 0 and diff.removed_packages == 0) or disable_overview:
+ if (len(diff.new_packages) == 0 and len(diff.removed_packages) == 0) or disable_overview:
278
new_overview_comment = False
279
log.debug("No new/removed packages or Dependency Overview comment disabled")
280
log.debug(f"Adding comments for {scm_type}")
0 commit comments