Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 10, 2024
1 parent 09b85e9 commit 0718e05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cle/backends/pe/relocation/arm.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ class IMAGE_REL_BASED_THUMB_MOV32(PEReloc):
7: IMAGE_REL_BASED_THUMB_MOV32,
}

__all__ = ('relocation_table_arm',)
__all__ = ("relocation_table_arm",)
2 changes: 1 addition & 1 deletion cle/backends/pe/relocation/mips.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ class IMAGE_REL_BASED_MIPS_JMPADDR16(PEReloc):
9: IMAGE_REL_BASED_MIPS_JMPADDR16,
}

__all__ = ('relocation_table_mips',)
__all__ = ("relocation_table_mips",)
2 changes: 1 addition & 1 deletion cle/backends/pe/relocation/riscv.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ class IMAGE_REL_BASED_RISCV_LOW12S(PEReloc):
8: IMAGE_REL_BASED_RISCV_LOW12S,
}

__all__ = ('relocation_table_riscv',)
__all__ = ("relocation_table_riscv",)

0 comments on commit 0718e05

Please sign in to comment.