projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a4bf4d0
)
Fix a problem introduced with previous type cleanup change.
author
Scott
<scott@wannabe.house>
Wed, 2 Feb 2022 18:35:08 +0000
(10:35 -0800)
committer
Scott
<scott@wannabe.house>
Wed, 2 Feb 2022 18:35:08 +0000
(10:35 -0800)
persistent.py
patch
|
blob
|
history
diff --git
a/persistent.py
b/persistent.py
index 7136559492ed0615366db854412c02c9024c7022..1e520bedd9ba0816692c5687114a1b106f3440d2 100644
(file)
--- a/
persistent.py
+++ b/
persistent.py
@@
-128,6
+128,7
@@
class persistent_autoloaded_singleton(object):
self.instance = None
def __call__(self, cls: Persistent):
+ @functools.wraps(cls) # type: ignore
def _load(*args, **kwargs):
# If class has already been loaded, act like a singleton