We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca8d84 commit 23b5df2Copy full SHA for 23b5df2
src/blosc2/lazyexpr.py
@@ -10,7 +10,6 @@
10
11
import ast
12
import asyncio
13
-import builtins
14
import concurrent.futures
15
import copy
16
import math
@@ -2824,7 +2823,7 @@ def lazyexpr(
2824
2823
operands = seek_operands(operand_set, local_dict, global_dict)
2825
else:
2826
# No operands found in the expression. Maybe a constructor?
2827
- constructor = builtins.any(constructor in expression for constructor in constructors)
+ constructor = any(constructor in expression for constructor in constructors)
2828
if not constructor:
2829
raise ValueError("No operands nor constructors found in the expression")
2830
# _new_expr will take care of the constructor, but needs an empty dict in operands
0 commit comments