Skip to content

Commit

Permalink
fix: remove main
Browse files Browse the repository at this point in the history
  • Loading branch information
tomli380576 committed Oct 31, 2024
1 parent 39858e7 commit 476e8ca
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions checkbox-support/checkbox_support/parsers/v4l2_compliance.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,4 @@ def parse_v4l2_compliance(
for ioctl_name in TEST_NAME_TO_IOCTL_MAP.get(name, []):
details["failed"].append(ioctl_name)

return summary, details


if __name__ == "__main__":
summary, details = parse_v4l2_compliance()
print(summary, "\n")
for k, v in details.items():
print(k, len(v))
print("\t", v)
return summary, details

0 comments on commit 476e8ca

Please sign in to comment.