From: Luke Kenneth Casson Leighton Date: Sun, 11 Jun 2023 12:26:20 +0000 (+0100) Subject: temporary hack-revert, the original is now in branch "paths" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=727fcc5465b4607122a6946a88ed62ef1c0cb1c8;p=openpower-isa.git temporary hack-revert, the original is now in branch "paths" Revert "reduce down one more line in walkmethod.__get__" This reverts commit f6efd96b89fe55292dd5470ec35dd5263e4d3803. --- diff --git a/src/openpower/insndb/core.py b/src/openpower/insndb/core.py index 973aac00..d19f92a5 100644 --- a/src/openpower/insndb/core.py +++ b/src/openpower/insndb/core.py @@ -63,7 +63,9 @@ class walkmethod: return super().__init__() def __get__(self, instance, owner): - entity = owner if instance is None else instance + entity = instance + if instance is None: + entity = owner return _functools.partial(self.__walk, entity)