User/return explicit `symcache` var name in sync case
parent
243821aab1
commit
8330b36e58
|
@ -318,9 +318,10 @@ def get_symcache(
|
||||||
return symcache
|
return symcache
|
||||||
|
|
||||||
try:
|
try:
|
||||||
cache: SymbologyCache = trio.run(sched_gen_symcache)
|
symcache: SymbologyCache = trio.run(sched_gen_symcache)
|
||||||
|
assert symcache
|
||||||
except BaseException:
|
except BaseException:
|
||||||
import pdbp
|
import pdbp
|
||||||
pdbp.xpm()
|
pdbp.xpm()
|
||||||
|
|
||||||
return cache
|
return symcache
|
||||||
|
|
Loading…
Reference in New Issue