Skip to content

Commit 3a30996

Browse files
committed
update noxfile.py to not format grpc/
1 parent 8f702f0 commit 3a30996

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ def format(session) -> None:
103103
}
104104
)
105105

106-
lint_paths_py = [f for f in changed_files if f.endswith('.py')]
106+
lint_paths_py = [
107+
f for f in changed_files if f.endswith('.py') and 'grpc/' not in f
108+
]
107109

108110
if not lint_paths_py:
109111
session.log('No changed Python files to lint.')

0 commit comments

Comments
 (0)