Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Nicholas A. Yager <[email protected]>
  • Loading branch information
dave-connors-3 and nicholasyager authored Aug 8, 2023
1 parent 5af261f commit d29b431
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbt_meshify/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ def connect(
if len(all_dependencies) == 0:
logger.info("No dependencies found between any of the projects")
return
else:
noun = "dependency" if len(all_dependencies) == 1 else "dependencies"
logger.info(f"Found {len(all_dependencies)} unique {noun} between all projects.")

noun = "dependency" if len(all_dependencies) == 1 else "dependencies"
logger.info(f"Found {len(all_dependencies)} unique {noun} between all projects.")
for dependency in all_dependencies:
logger.info(
f"Resolving dependency between {dependency.upstream_resource} and {dependency.downstream_resource}"
Expand Down

0 comments on commit d29b431

Please sign in to comment.