aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tidy.py')
-rw-r--r--python/tidy.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/tidy.py b/python/tidy.py
index 37785b6b513..817b3381f79 100644
--- a/python/tidy.py
+++ b/python/tidy.py
@@ -149,7 +149,9 @@ def check_lock(file_name, contents):
contents = contents.splitlines(True)
idx = 1
packages = {}
- exceptions = ["glutin", "wayland-kbd"] # package names to be neglected (as named by cargo)
+
+ # package names to be neglected (as named by cargo)
+ exceptions = ["glutin", "wayland-kbd"]
while idx < len(contents):
content = contents[idx].strip()