fix typo
This commit is contained in:
parent
0aa2367ee4
commit
80d95da43b
@ -98,7 +98,7 @@ async def main():
|
||||
con = sqlite3.connect('stocks.db')
|
||||
cursor = con.cursor()
|
||||
cursor.execute("SELECT DISTINCT symbol FROM stocks WHERE symbol NOT LIKE '%.%'")
|
||||
stock_symbols = ['CXT'] #[row[0] for row in cursor.fetchall()]
|
||||
stock_symbols = [row[0] for row in cursor.fetchall()]
|
||||
con.close()
|
||||
|
||||
async with aiohttp.ClientSession(headers=headers) as session:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user