We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c493d93 commit 283abebCopy full SHA for 283abeb
1 file changed
synth/semantic/evaluator.py
@@ -55,7 +55,7 @@ def compress(self, program: Program) -> Program:
55
value = self.eval(program, [])
56
self.use_cache = before
57
# Cancel compression of callable
58
- if isinstance(value, Callable):
+ if isinstance(value, Callable): #type: ignore
59
return Function(program.function, args)
60
tval = __tuplify__(value)
61
if tval in self._dsl_constants:
0 commit comments