Skip to content

Commit e46539f

Browse files
committed
Fix camel-cased endswith()
1 parent 35a3052 commit e46539f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/run-tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,9 +654,9 @@ def main():
654654
run_apache_rat_checks()
655655

656656
# style checks
657-
if not changed_files or any(f.endsWith(".scala") for f in changed_files):
657+
if not changed_files or any(f.endswith(".scala") for f in changed_files):
658658
run_scala_style_checks()
659-
if not changed_files or any(f.endsWith(".py") for f in changed_files):
659+
if not changed_files or any(f.endswith(".py") for f in changed_files):
660660
run_python_style_checks()
661661

662662
# determine if docs were changed and if we're inside the amplab environment

0 commit comments

Comments
 (0)