commit | 45752a24954bd4c65d347f4170142cf431713689 | [log] [tgz] |
---|---|---|
author | Yu Watanabe <watanabe.yu+github@gmail.com> | Fri Nov 20 19:47:11 2020 +0900 |
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | Fri Nov 20 19:47:11 2020 +0900 |
tree | 6de31cc77529734651e12bbf780508028be7c769 | |
parent | 48b11b09ab78d3c87c24b3d64c43d17ebd1fab3d [diff] [blame] |
tools: drop unnecessary "else" after for loop
diff --git a/tools/update-dbus-docs.py b/tools/update-dbus-docs.py index cb8eda9..8fea0b8 100755 --- a/tools/update-dbus-docs.py +++ b/tools/update-dbus-docs.py
@@ -125,8 +125,7 @@ for loc in document.findall(predicate): if loc.text == item_repr: return True - else: - return False + return False def check_documented(document, declarations, stats): missing = []