diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-09-27 15:37:49 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-28 13:24:41 -0400 |
| commit | a7b05bff9ca19b783207e1e3935ad82585a59e8b (patch) | |
| tree | aaf1956e4056f2d081782d16c87e2a0d81e138bb /python/lowlevelil.py | |
| parent | ed6e4dd83fb600a5391c2ed9280417ecd149ed34 (diff) | |
More f-strings
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index fb4f65b4..cad8828c 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -4636,9 +4636,9 @@ class LowLevelILBasicBlock(basicblock.BasicBlock): def __repr__(self): arch = self.arch if arch: - return "<llil block: %s@%d-%d>" % (arch.name, self.start, self.end) + return f"<llil block: {arch.name}@{self.start}-{self.end}>" else: - return "<llil block: %d-%d>" % (self.start, self.end) + return f"<llil block: {self.start}-{self.end}>" def __hash__(self): return hash((self.start, self.end, self._il_function)) |
