Skip to content

Commit 8b05dc3

Browse files
committed
Fix YAML boolean parsing: quote ticker "ON" (ON Semiconductor)
YAML treats bare `ON` as boolean True, causing TypeError in re.match() when yfinance tries to use it as a symbol string. https://claude.ai/code/session_01LbgD64GPmP5tS7j4uavkCa
1 parent 02af591 commit 8b05dc3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ universe:
3434
- APH
3535
- FTNT
3636
- NXPI
37-
- ON
37+
- "ON"
3838
- MPWR
3939
- KEYS
4040
- TEL

0 commit comments

Comments
 (0)