Skip to content

Commit 180e859

Browse files
author
Thomas Preud'homme
committed
Fix line too long Flake8 warning
Flake8's last remaining warning is about a multiline string being more than 120 characters. This breaks the line up, fixing the last Flake8 warning. Reviewed By: tnfchris Differential Revision: https://reviews.llvm.org/D94841
1 parent 6d6436e commit 180e859

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/SharedInputs/FakeCompilers/fakecompiler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ class Clang_monorepo2(LLVMCompiler):
126126

127127
def print_verbose_info(self):
128128
print("""\
129-
clang version 1.2.3 (ssh://something.com/llvm-project.git 597522d740374f093a089a2acbec5b20466b2f34) (extra) (stuff) (here)
129+
clang version 1.2.3 (ssh://something.com/llvm-project.git \
130+
597522d740374f093a089a2acbec5b20466b2f34) (extra) (stuff) (here)
130131
Thread model: posix
131132
InstalledDir: /home/foo/bin
132133
""", file=sys.stderr)

0 commit comments

Comments
 (0)