Skip to content

Commit

Permalink
Even more
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-el committed Sep 12, 2024
1 parent b1ec6d6 commit 87be629
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions komodo/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,11 @@ def lint(

failed_requirements = dependencies.failed_requirements()
if failed_requirements:
print(failed_requirements)
package_string = ", ".join(failed_requirements.values())
print("Package string:", package_string)
deps = [
_komodo_error(
err="Failed requirements ",
depends=[str(r) for r in failed_requirements],
package=package_string,
package=", ".join(failed_requirements.values()),
)
]
else:
Expand Down Expand Up @@ -204,7 +201,7 @@ def lint_main():
if err.err:
print(f"{err.err}")
if err.package:
print(" " + "\n ".join(err.package))
print(f"{err.package}")
if err.depends:
print(" " + "\n ".join(err.depends))

Expand Down

0 comments on commit 87be629

Please sign in to comment.