Skip to content

Commit 283abeb

Browse files
committed
Fixed mypy issue
1 parent c493d93 commit 283abeb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

synth/semantic/evaluator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def compress(self, program: Program) -> Program:
5555
value = self.eval(program, [])
5656
self.use_cache = before
5757
# Cancel compression of callable
58-
if isinstance(value, Callable):
58+
if isinstance(value, Callable): #type: ignore
5959
return Function(program.function, args)
6060
tval = __tuplify__(value)
6161
if tval in self._dsl_constants:

0 commit comments

Comments
 (0)