This commit is contained in:
Frisk 2020-08-11 03:00:49 +02:00
parent 1e32ee4ab1
commit 34114e378b
No known key found for this signature in database
GPG key ID: 213F7C15068AF8AC

View file

@ -51,6 +51,11 @@ class LimitedList(list):
return return
raise ListFull raise ListFull
def insert(self, __index: int, __object) -> None:
if isinstance(__index, int):
raise TypeError
class RcQueue: class RcQueue:
def __init__(self): def __init__(self):