typed_python icon indicating copy to clipboard operation
typed_python copied to clipboard

ListOf lacks .remove method

Open aaronmlevy opened this issue 3 years ago • 0 comments

from typed_python import ListOf

x = ListOf(str)(['a', 'b', 'c'])
x.remove('b')

returns

AttributeError: 'ListOf(str)' object has no attribute 'remove'

aaronmlevy avatar Jan 24 '22 18:01 aaronmlevy