aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/autograph/pyct/cfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/autograph/pyct/cfg.py')
-rw-r--r--tensorflow/python/autograph/pyct/cfg.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tensorflow/python/autograph/pyct/cfg.py b/tensorflow/python/autograph/pyct/cfg.py
index ec733ea38f..fdfcd4dcc1 100644
--- a/tensorflow/python/autograph/pyct/cfg.py
+++ b/tensorflow/python/autograph/pyct/cfg.py
@@ -679,10 +679,6 @@ class AstToCfg(gast.NodeVisitor):
self.cfgs[node] = self.builder.build()
self.builder = self.builder_stack.pop()
- def visit_Lambda(self, node):
- # TODO(mdan): Treat like FunctionDef? That would be a separate CFG.
- raise NotImplementedError()
-
def visit_Return(self, node):
self._process_exit_statement(node, gast.FunctionDef)