Update screen_utils.py

This commit is contained in:
chrys87 2018-05-30 16:28:19 +02:00 committed by GitHub
parent 096614ab3f
commit 5e4f4832c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,10 +35,10 @@ def createScreenEventData(content):
}
return eventData.copy()
def hasMore(fd, timetout=0.2):
def hasMore(fd, timetout=0.1):
r, _, _ = select.select([fd], [], [], timetout)
return (fd in r)
def hasMoreWhat(fdList, timetout=0.2):
def hasMoreWhat(fdList, timetout=0.1):
if not isinstance(fdList, list):
return []
elif fdList == []: