Skip to content

Commit f68ba4c

Browse files
committed
remove extraneous parens, continue failing fast and remove 3.12 which removed stuff
1 parent c827875 commit f68ba4c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ['3.9', 'pypy3.10', '3.10', '3.12']
9-
fail-fast: false
8+
python-version: ['3.9', 'pypy3.10', '3.11']
109

1110
steps:
1211
- name: Checkout

cpplint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5101,7 +5101,7 @@ def CheckIncludeLine(filename, clean_lines, linenum, include_state, error):
51015101
match = _RE_PATTERN_INCLUDE.search(line)
51025102
if match:
51035103
include = match.group(2)
5104-
used_angle_brackets = (match.group(1) == '<')
5104+
used_angle_brackets = match.group(1) == '<'
51055105
duplicate_line = include_state.FindHeader(include)
51065106
if duplicate_line >= 0:
51075107
error(filename, linenum, 'build/include', 4,

0 commit comments

Comments
 (0)