diff --git a/piker/data/_symcache.py b/piker/data/_symcache.py index 79f00223..8962af17 100644 --- a/piker/data/_symcache.py +++ b/piker/data/_symcache.py @@ -318,9 +318,10 @@ def get_symcache( return symcache try: - cache: SymbologyCache = trio.run(sched_gen_symcache) + symcache: SymbologyCache = trio.run(sched_gen_symcache) + assert symcache except BaseException: import pdbp pdbp.xpm() - return cache + return symcache