File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ignore_missing_imports = true
44
55[tool .poetry ]
66name = " pyth-observer"
7- version = " 0.1.13 "
7+ version = " 0.1.14 "
88description = " Alerts and stuff"
99authors = []
1010readme = " README.md"
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ def state(self) -> PriceFeedState:
5757
5858 def run (self ) -> bool :
5959 market_open = is_market_open (
60- self .__state .asset_type ,
60+ self .__state .asset_type . lower () ,
6161 datetime .now (ZoneInfo ("America/New_York" )),
6262 )
6363
@@ -182,7 +182,7 @@ def run(self) -> bool:
182182 return True
183183
184184 market_open = is_market_open (
185- self .__state .asset_type ,
185+ self .__state .asset_type . lower () ,
186186 datetime .now (ZoneInfo ("America/New_York" )),
187187 )
188188
@@ -244,7 +244,7 @@ def run(self) -> bool:
244244 return True
245245
246246 market_open = is_market_open (
247- self .__state .asset_type ,
247+ self .__state .asset_type . lower () ,
248248 datetime .now (ZoneInfo ("America/New_York" )),
249249 )
250250
You can’t perform that action at this time.
0 commit comments