Skip to content

Commit

Permalink
Merge pull request #60 from binarly-io/wip/hughsie/pyyaml
Browse files Browse the repository at this point in the history
Wip/hughsie/pyyaml
  • Loading branch information
yeggor committed Jul 20, 2023
2 parents ce447ee + eb5399d commit 23ce805
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fwhunt_scan_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def scan_firmware(image_path: str, rule: List[str], rules_dir: str) -> bool:
continue
for guid in [g.lower() for g in uefi_rule.volume_guids]:
lower_guid = guid.lower()
if not lower_guid in rules_guids:
if lower_guid not in rules_guids:
rules_guids[lower_guid] = list()
rules_guids[lower_guid].append(uefi_rule)

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
click>=7
rzpipe==0.4.0
pyyaml~=5.4.1
pyyaml~=6.0.1
shared_memory38; python_version >= "3.6" and python_version < "3.8"
uefi_firmware @ git+https://github.com/theopolis/[email protected]

0 comments on commit 23ce805

Please sign in to comment.