Skip to content

Commit

Permalink
Remove lingering print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
James tufarelli committed Nov 22, 2023
1 parent fefdaa6 commit 88c83bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/add-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@ jobs:

- name: Commit changes back to repo
uses: stefanzweifel/git-auto-commit-action@v5
# Token comes from actions/checkout
with: # Token comes from actions/checkout
commit_message: Add Header


1 change: 0 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ def _loop_through_files_opt_in(self, re_accept_patterns: List[Pattern]) -> None:
self._add_header_to_file(full_file_path, rel_file_path, header, skip_prefixes, (prefix, suffix))

def _loop_through_files_opt_out(self, re_ignore_patterns: List[Pattern]) -> None:
print("_loop_through_files_opt_out")
base_dir = self.header_rc.work_path

for root, _, files in os.walk(base_dir, topdown=True):
Expand Down

0 comments on commit 88c83bc

Please sign in to comment.