bug fixed

This commit is contained in:
2023-01-31 21:06:22 +08:00
parent 4d7a1b614a
commit a8c0c9e1d5
3 changed files with 5 additions and 2 deletions

View File

@ -92,6 +92,9 @@ class MethodList(list):
def __getitem__(self, item) -> T:
return self._T[item]
def __len__(self) -> int:
return self._T.__len__()
"""