formatting according to black

This commit is contained in:
JanLJL
2023-03-03 15:24:18 +01:00
parent 72f69fa707
commit 2cc338d107

View File

@@ -64,11 +64,7 @@ class ISASemantics(object):
isa_data = self._isa_model.get_instruction(
instruction_form["instruction"][:-1], instruction_form["operands"]
)
if (
isa_data is None
and self._isa == "aarch64"
and "." in instruction_form["instruction"]
):
if isa_data is None and self._isa == "aarch64" and "." in instruction_form["instruction"]:
# Check for instruction without shape/cc suffix
suffix_start = instruction_form["instruction"].index(".")
isa_data = self._isa_model.get_instruction(
@@ -193,11 +189,7 @@ class ISASemantics(object):
isa_data = self._isa_model.get_instruction(
instruction_form["instruction"][:-1], instruction_form["operands"]
)
if (
isa_data is None
and self._isa == "aarch64"
and "." in instruction_form["instruction"]
):
if isa_data is None and self._isa == "aarch64" and "." in instruction_form["instruction"]:
# Check for instruction without shape/cc suffix
suffix_start = instruction_form["instruction"].index(".")
isa_data = self._isa_model.get_instruction(