Skip to content

Commit

Permalink
typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarunmeena0901 authored Dec 29, 2023
1 parent 1c7d3c3 commit 8f878b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/count_changed_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import sys


def count_changed_files(base_branch, current_branch):
def _count_changed_files(base_branch, current_branch):
"""
Count the number of changed files between two branches.
Expand Down Expand Up @@ -76,7 +76,7 @@ def main():
print(current_branch)

# Count changed files
file_count = count_changed_files(base_branch, current_branch)
file_count = _count_changed_files(base_branch, current_branch)

print(f"Number of changed files: {file_count}")

Expand Down

0 comments on commit 8f878b3

Please sign in to comment.