This runs fine, as expected: ```python print(nw.from_dict({'a': [1,2,3]}, schema={'a': nw.Int64}, backend='pyarrow')) ``` but the currently typing wants us to write ```py print(nw.from_dict({'a': [1,2,3]}, schema={'a': nw.Int64()}, backend='pyarrow')) ```