Skip to content

Commit

Permalink
to conform with snake_case naming
Browse files Browse the repository at this point in the history
  • Loading branch information
atarutin committed May 21, 2024
1 parent bed85d0 commit 7763a40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/nova_tag_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def try_add_tag(self, tag: TagReference) -> bool:

@staticmethod
def from_component(
component: NovaComponent, since: str, gi: GitIntegration
component: NovaComponent, since: str, git_integration: GitIntegration
) -> NovaTagList:
"""
Create a new instance of NovaTagList for the given component
Expand All @@ -76,7 +76,7 @@ def from_component(
if component.repo is None:
return NovaTagList(component, since)

all_tags = gi.list_tags(component.repo.url, since)
all_tags = git_integration.list_tags(component.repo.url, since)
result = NovaTagList(component, since)
for tag in all_tags:
result.try_add_tag(tag)
Expand Down

0 comments on commit 7763a40

Please sign in to comment.