We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unknown type for name Zip
Executing this code (in the func-adl-uproot repository):
from func_adl_uproot import UprootDataset ds = UprootDataset('tests/vectors_tree_file.root') ds.Select(lambda row: Zip([row.int_vector_branch, row.float_vector_branch]))
gives me Unknown type for name Zip, though the query still seems to work fine. It looks like it comes from this line:
func_adl/func_adl/type_based_replacement.py
Line 894 in 9be9f18
The text was updated successfully, but these errors were encountered:
Ah - interesting! This must be some edge case - it is supposed to assume Any when it can't determine anything about the types.
Any
Sorry, something went wrong.
gordonwatts
No branches or pull requests
Executing this code (in the func-adl-uproot repository):
gives me
Unknown type for name Zip
, though the query still seems to work fine. It looks like it comes from this line:func_adl/func_adl/type_based_replacement.py
Line 894 in 9be9f18
The text was updated successfully, but these errors were encountered: