selectable_int: canonicalize indentation
authorDmitry Selyutin <ghostmansd@gmail.com>
Thu, 18 Aug 2022 08:58:38 +0000 (11:58 +0300)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 29 Aug 2022 19:38:11 +0000 (20:38 +0100)
src/openpower/decoder/selectable_int.py

index 7e7eb97d92a2ceafbfa3e94acb6828ee6ef1adf0..a94bb43d41083432f1141e44a16ad11c1ab1c001 100644 (file)
@@ -570,8 +570,8 @@ class SelectableIntMappingMeta(type):
             yield (key, value)
 
 
-class SelectableIntMapping(SelectableInt, metaclass=SelectableIntMappingMeta,
-                                          bits=0):
+class SelectableIntMapping(SelectableInt,
+            metaclass=SelectableIntMappingMeta, bits=0):
     def __init__(self, value=0, bits=None):
         if isinstance(value, int) and bits is None:
             bits = self.__class__.bits