From 9e887157e3dfbd72c19c6220e281a86629c6e2ad Mon Sep 17 00:00:00 2001 From: Rahul Sharma Date: Fri, 4 Mar 2016 15:35:08 +0530 Subject: [PATCH] tidy fix for longer single line imports --- python/tidy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tidy.py b/python/tidy.py index 35b4f230dbb..a63afba3d78 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -366,7 +366,7 @@ def check_rust(file_name, lines): if line.startswith("use "): import_block = True indent = len(original_line) - len(line) - if not line.endswith(";"): + if not line.endswith(";") and '{' in line: yield (idx + 1, "use statement spans multiple lines") # strip "use" from the begin and ";" from the end current_use = line[4:-1]