Skip to content

Commit 9bb061a

Browse files
author
Thomas Preud'homme
committed
Fix blank line errors
Fix the following Flake8 errors: - E301 (expected 1 blank line, found 0) - E303 (too many blank lines) Reviewed By: tnfchris Differential Revision: https://reviews.llvm.org/D94792
1 parent 99b21a5 commit 9bb061a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

tests/SharedInputs/FakeCompilers/fakecompiler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ def print_verbose_info(self):
107107
# Monorepo clang build
108108
class Clang_monorepo(LLVMCompiler):
109109
compiler_name = "clang-monorepo"
110+
110111
def print_verbose_info(self):
111112
print("""\
112113
clang version 1.2.3 (ssh://something.com/llvm-project.git 597522d740374f093a089a2acbec5b20466b2f34)
@@ -122,6 +123,7 @@ def print_verbose_info(self):
122123
# Monorepo clang build with some extra stuff after the version string
123124
class Clang_monorepo2(LLVMCompiler):
124125
compiler_name = "clang-monorepo2"
126+
125127
def print_verbose_info(self):
126128
print("""\
127129
clang version 1.2.3 (ssh://something.com/llvm-project.git 597522d740374f093a089a2acbec5b20466b2f34) (extra) (stuff) (here)

tests/lnttool/email_tools.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
# RUN: python %{shared_inputs}/create_temp_instance.py \
88
# RUN: %s %{shared_inputs}/SmallInstance %t.instance
99

10-
11-
1210
# RUN: lnt send-run-comparison --dry-run --to [email protected] \
1311
# RUN: --from [email protected] \
1412
# RUN: --host localhost %t.instance 1 2 | FileCheck %s --check-prefix CHECK0
@@ -37,8 +35,6 @@
3735
# ...
3836
# CHECK0: </html>
3937

40-
41-
4238
# RUN: lnt send-daily-report --dry-run --from [email protected] \
4339
# RUN: --host localhost --testsuite nts --filter-machine-regex=machine.? \
4440
# RUN: %t.instance [email protected] | FileCheck %s --check-prefix CHECK1

0 commit comments

Comments
 (0)