diff --git a/aprsd/dev.py b/aprsd/dev.py index 36c7e2a..eb952e2 100644 --- a/aprsd/dev.py +++ b/aprsd/dev.py @@ -240,10 +240,10 @@ def test_plugin( LOG.info(f"P'{plugin_path}' F'{fromcall}' C'{message}'") for x in range(number): - reply = pm.run(packet) - # Plugin might have threads, so lets stop them so we can exit. - # obj.stop_threads() - LOG.info(f"Result{x} = '{reply}'") + reply = pm.run(packet) + # Plugin might have threads, so lets stop them so we can exit. + # obj.stop_threads() + LOG.info(f"Result{x} = '{reply}'") pm.stop() diff --git a/aprsd/objectstore.py b/aprsd/objectstore.py index b6d5c37..35ccab0 100644 --- a/aprsd/objectstore.py +++ b/aprsd/objectstore.py @@ -66,7 +66,6 @@ class ObjectStoreMixin: ) self.flush() - def load(self): if os.path.exists(self._save_filename()): raw = pickle.load(open(self._save_filename(), "rb"))