From 4976375d749094ff0bd2989feb85e4ec3b25eb6a Mon Sep 17 00:00:00 2001 From: Yacine Elhamer Date: Fri, 2 Jun 2023 16:30:17 +0100 Subject: [PATCH] elf.py: fix identation error --- capa/features/extractors/elf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa/features/extractors/elf.py b/capa/features/extractors/elf.py index 7818f507..1fb809fc 100644 --- a/capa/features/extractors/elf.py +++ b/capa/features/extractors/elf.py @@ -707,7 +707,7 @@ class SymTab: sh_symtab = Shdr.from_viv(section, ElfBinary.readAtOffset(section.sh_offset, section.sh_size)) sh_strtab = Shdr.from_viv(strtab_section, ElfBinary.readAtOffset(strtab_section.sh_offset, strtab_section.sh_size)) - return cls(endian, bitness, sh_symtab, sh_strtab) + return cls(endian, bitness, sh_symtab, sh_strtab) def guess_os_from_osabi(elf: ELF) -> Optional[OS]: