typed_python
typed_python copied to clipboard
ListOf lacks .remove method
from typed_python import ListOf
x = ListOf(str)(['a', 'b', 'c'])
x.remove('b')
returns
AttributeError: 'ListOf(str)' object has no attribute 'remove'