Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-connors-3 committed Jan 16, 2024
1 parent 283f291 commit 785b35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt_meshify/utilities/references.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def update_yml_resource_references(
for ref in refs:
package_clause = f"'{ref.package}', " if ref.package else ""
name_clause = f"'{ref.name}'"
version_clause = f", v={ref.name}" if ref.version else ""
version_clause = f", v={ref.version}" if ref.version else ""
str_ref = f"ref({package_clause}{name_clause}{version_clause})"
if str_ref != ref_to_update:
str_refs.append(str_ref)
Expand Down

0 comments on commit 785b35d

Please sign in to comment.