From 8de332c8fcf3f130b12ef29afe96097ac2f32b90 Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Thu, 18 Aug 2022 11:58:38 +0300 Subject: [PATCH] selectable_int: canonicalize indentation --- src/openpower/decoder/selectable_int.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openpower/decoder/selectable_int.py b/src/openpower/decoder/selectable_int.py index 7e7eb97d..a94bb43d 100644 --- a/src/openpower/decoder/selectable_int.py +++ b/src/openpower/decoder/selectable_int.py @@ -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 -- 2.30.2