commit | e310dd91688c0b6d6eaee9e6889bf61ee6ce09b7 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Dec 07 06:55:38 2022 -0600 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Dec 07 06:55:40 2022 -0600 |
tree | 6cc0dbfecf4f329c03bdcaa831a286aeed434914 | |
parent | 38a1a130c8c35e3819edff61c379f748a63deee2 [diff] |
treewide: lint and format Run all the latest linters and formatters from openbmc-build-scripts. These were all robotically generated except for fixes due to markdownlint warnings. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: If16d2fd802a2d452234d8b56b41e79d030138a6b
diff --git a/tof-voters/libvoters/subcmd/analyze-reviews.py b/tof-voters/libvoters/subcmd/analyze-reviews.py index b3323fa..d5ccade 100644 --- a/tof-voters/libvoters/subcmd/analyze-reviews.py +++ b/tof-voters/libvoters/subcmd/analyze-reviews.py
@@ -78,7 +78,7 @@ comments_per_user[reviewer] += 1 print(project, id_number) - for (user, count) in comments_per_user.items(): + for user, count in comments_per_user.items(): if count < 3: continue print(" ", user, count)
diff --git a/tof-voters/libvoters/subcmd/dump-gerrit.py b/tof-voters/libvoters/subcmd/dump-gerrit.py index 455f0e6..a934523 100644 --- a/tof-voters/libvoters/subcmd/dump-gerrit.py +++ b/tof-voters/libvoters/subcmd/dump-gerrit.py
@@ -3,6 +3,7 @@ import argparse import json import os + from sh import ssh # type: ignore