black code style

This commit is contained in:
Moritz Raabe
2021-09-14 09:57:33 +02:00
parent 0803c6f3fa
commit 0c42942a88

View File

@@ -94,7 +94,7 @@ FILE_HANDLERS = (
extract_file_format,
)
def extract_global_features(elf: ELFFile, buf: bytes) -> Iterator[Tuple[Feature, int]]:
for global_handler in GLOBAL_HANDLERS:
for feature, va in global_handler(elf=elf, buf=buf): # type: ignore