From: Luke Kenneth Casson Leighton Date: Sun, 6 Sep 2020 19:19:03 +0000 (+0100) Subject: grr, autopep8 messing up X-Git-Tag: semi_working_ecp5~163 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5c5c47e3421e94bb7dbbfd8f04398ea269cd1237;p=soc.git grr, autopep8 messing up --- diff --git a/src/soc/decoder/power_decoder.py b/src/soc/decoder/power_decoder.py index e4b87db1..119d7922 100644 --- a/src/soc/decoder/power_decoder.py +++ b/src/soc/decoder/power_decoder.py @@ -101,15 +101,15 @@ from soc.decoder.power_fieldsn import SigDecode, SignalBitRange # key data structure in which the POWER decoder is specified, # in a hierarchical fashion Subdecoder = namedtuple("Subdecoder", - ["pattern", # the major pattern to search for (e.g. major opcode) - "opcodes", # a dictionary of minor patterns to find - "opint", # true => the pattern must not be in "10----11" format - # the bits (as a range) against which "pattern" matches - "bitsel", - "suffix", # shift the opcode down before decoding - "subdecoders" # list of further subdecoders for *additional* matches, - # *ONLY* after "pattern" has *ALSO* been matched against. - ]) + ["pattern", # the major pattern to search for (e.g. major opcode) + "opcodes", # a dictionary of minor patterns to find + "opint", # true => the pattern must not be in "10----11" format + # the bits (as a range) against which "pattern" matches + "bitsel", + "suffix", # shift the opcode down before decoding + "subdecoders" # list of further subdecoders for *additional* matches, + # *ONLY* after "pattern" has *ALSO* been matched against. + ]) class PowerOp: