summaryrefslogtreecommitdiff
path: root/persistent.py
diff options
context:
space:
mode:
Diffstat (limited to 'persistent.py')
-rw-r--r--persistent.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/persistent.py b/persistent.py
index 16f51c0..119931b 100644
--- a/persistent.py
+++ b/persistent.py
@@ -150,20 +150,15 @@ class persistent_autoloaded_singleton(object):
logger.debug(f'Attempting to instantiate {cls.__name__} directly.')
self.instance = cls(*args, **kwargs)
else:
- logger.debug(
- f'Class {cls.__name__} was loaded from persisted state successfully.'
- )
+ logger.debug(f'Class {cls.__name__} was loaded from persisted state successfully.')
was_loaded = True
assert self.instance is not None
if self.persist_at_shutdown is PersistAtShutdown.ALWAYS or (
- not was_loaded
- and self.persist_at_shutdown is PersistAtShutdown.IF_NOT_LOADED
+ not was_loaded and self.persist_at_shutdown is PersistAtShutdown.IF_NOT_LOADED
):
- logger.debug(
- 'Scheduling a deferred called to save at process shutdown time.'
- )
+ logger.debug('Scheduling a deferred called to save at process shutdown time.')
atexit.register(self.instance.save)
return self.instance