Disable scroll lock

This commit is contained in:
Tanner Collin 2022-10-01 22:00:44 -06:00
parent fc22882dc4
commit 2eb9a62c91

View File

@ -10,6 +10,8 @@ logging.basicConfig(
logging.info('') logging.info('')
logging.info('Boot up') logging.info('Boot up')
os.system('stty -ixon')
import curses import curses
import requests import requests
import pytz import pytz
@ -101,7 +103,7 @@ if wa_api_key:
def think_send(query): def think_send(query):
result = '' result = ''
try: try:
res = wa_client.query(query, timeout=5) res = wa_client.query(query, timeout=10)
except BaseException as e: except BaseException as e:
logging.error('Error hitting W|A API: {} - {}\n'.format(e.__class__.__name__, e)) logging.error('Error hitting W|A API: {} - {}\n'.format(e.__class__.__name__, e))
return 'Network error' return 'Network error'