Skip to content

Commit 6f7df66

Browse files
committed
lint
1 parent 8aad716 commit 6f7df66

File tree

1 file changed

+1
-1
lines changed
  • microtaint/instrumentation

1 file changed

+1
-1
lines changed

microtaint/instrumentation/ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class InstructionCellExpr(Expr):
182182

183183
def __str__(self) -> str:
184184
args = ', '.join(f'{k}={v}' for k, v in self.inputs.items())
185-
return f'SimulateCell(instr=0x{self.instruction}, out={self.out_reg}[{self.out_bit_end}:{self.out_bit_start}], {args})'
185+
return f'SimulateCell(instr=0x{self.instruction}, out={self.out_reg}[{self.out_bit_end}:{self.out_bit_start}], {args})' # noqa: E501
186186

187187
def evaluate(self, input_taint: dict[str, int], input_values: dict[str, int]) -> int:
188188
raise NotImplementedError('Evaluating instruction cell expr dynamically outside emulator is not supported.')

0 commit comments

Comments
 (0)