Skip to content

Commit

Permalink
Fix one PR check bug on cfg-lint-check.py
Browse files Browse the repository at this point in the history
Signed-off-by: Xudong Hao <[email protected]>
  • Loading branch information
xhao22 committed Jun 7, 2024
1 parent 9494eb3 commit bfd36f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/cfg-lint-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def cfg_lint_check():
status_code = 0
blank_line = 0
cfg_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
os.pardir, file))
os.pardir, os.pardir, file))
with open(cfg_path, 'r') as f:
contents = f.read()
for num, line in enumerate(contents.splitlines(), 1):
Expand Down

0 comments on commit bfd36f6

Please sign in to comment.