Skip to content

Commit

Permalink
Merge pull request #240 from nathanchance/fix-ruff-pie808-utils
Browse files Browse the repository at this point in the history
tc_build: utils: Fix new Ruff warning (PIE808)
  • Loading branch information
nathanchance authored Aug 28, 2023
2 parents 5297456 + 4a1ae46 commit 830ca91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tc_build/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def print_cyan(msg):


def print_header(string):
border = ''.join(["=" for _ in range(0, len(string) + 6)])
border = ''.join(["=" for _ in range(len(string) + 6)])
print_cyan(f"\n{border}\n== {string} ==\n{border}\n")


Expand Down

0 comments on commit 830ca91

Please sign in to comment.