From fb4f1732b6025d35807a3585845129f10911ba5a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 27 Oct 2022 10:24:39 -0400 Subject: [PATCH] Drop key error again --- piker/data/marketstore.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/piker/data/marketstore.py b/piker/data/marketstore.py index fccd13b4..6a8acdfb 100644 --- a/piker/data/marketstore.py +++ b/piker/data/marketstore.py @@ -434,8 +434,7 @@ class Storage: syms = await client.list_symbols() if fqsn not in syms: - raise KeyError('No entry for {fqsn}') - # return {} + return {} # use the provided timeframe or 1s by default tfstr = tf_in_1s.get(timeframe, tf_in_1s[1])