User/return explicit `symcache` var name in sync case

account_tests
Tyler Goodlet 2023-07-10 17:44:30 -04:00
parent 243821aab1
commit 8330b36e58
1 changed files with 3 additions and 2 deletions

View File

@ -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