Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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
pre-commit-ci[bot] committed Oct 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent f1bb20e commit 86c5866
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyvex/const_val.py
Original file line number Diff line number Diff line change
@@ -7,7 +7,11 @@ class ConstVal:
:ivar stmt_idx: The IRSB statement index containing the data access
"""

__slots__ = ("tmp", "value", "stmt_idx",)
__slots__ = (
"tmp",
"value",
"stmt_idx",
)

def __init__(self, tmp: int, value: int, stmt_idx: int):
self.tmp = tmp
@@ -19,4 +23,4 @@ def __repr__(self):

@classmethod
def from_c(cls, r):
return cls(r.tmp, r.value, r.stmt_idx)
return cls(r.tmp, r.value, r.stmt_idx)

0 comments on commit 86c5866

Please sign in to comment.