getml.DataFrame.add should accept List for col argument. Also type annotations should be added. ``` table.add(col=[ ele for ele in table.pet_names], name="test", role="unused_string") ``` leads to ``` TypeError: 'col' must be a getml.data.Column or a value! ```
getml.DataFrame.add should accept List for col argument.
Also type annotations should be added.
leads to