mirror of
https://gitlab.com/chicken-riders/RcGcDb.git
synced 2025-02-23 00:54:09 +00:00
Debug
This commit is contained in:
parent
1e32ee4ab1
commit
34114e378b
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue