Skip to content

Commit

Permalink
Flake8 formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JanLJL committed May 2, 2024
1 parent d623115 commit c9e3863
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 7 deletions.
4 changes: 2 additions & 2 deletions osaca/parser/immediate.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def shift(self):
return self._imd_type

@imd_type.setter
def imd_type(self, type):
self._imd_type = imd_type
def imd_type(self, itype):
self._imd_type = itype

@identifier.setter
def identifier(self, identifier):
Expand Down
1 change: 0 additions & 1 deletion osaca/parser/parser_AArch64.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from osaca.parser.identifier import IdentifierOperand
from osaca.parser.immediate import ImmediateOperand
from osaca.parser.condition import ConditionOperand
from osaca.parser.flag import FlagOperand
from osaca.parser.prefetch import PrefetchOperand


Expand Down
2 changes: 0 additions & 2 deletions osaca/parser/parser_x86att.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@

from osaca.parser import BaseParser
from osaca.parser.instruction_form import InstructionForm
from osaca.parser.operand import Operand
from osaca.parser.directive import DirectiveOperand
from osaca.parser.memory import MemoryOperand
from osaca.parser.label import LabelOperand
from osaca.parser.register import RegisterOperand
from osaca.parser.identifier import IdentifierOperand
from osaca.parser.immediate import ImmediateOperand
from osaca.parser.flag import FlagOperand


class ParserX86ATT(BaseParser):
Expand Down
1 change: 0 additions & 1 deletion osaca/semantics/hw_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

import ruamel.yaml
from osaca import __version__, utils
from copy import deepcopy
from osaca.parser import ParserX86ATT
from osaca.parser.instruction_form import InstructionForm
from osaca.parser.operand import Operand
Expand Down
1 change: 0 additions & 1 deletion osaca/semantics/kernel_dg.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from osaca.parser.memory import MemoryOperand
from osaca.parser.register import RegisterOperand
from osaca.parser.immediate import ImmediateOperand
from osaca.parser.operand import Operand
from osaca.parser.flag import FlagOperand


Expand Down

0 comments on commit c9e3863

Please sign in to comment.