From d3137c5d0330a8d776cff6f47fb54c56ea658948 Mon Sep 17 00:00:00 2001 From: esc Date: Thu, 25 Apr 2024 20:20:14 +0200 Subject: [PATCH] fix typo As title --- numba_rvsdg/core/datastructures/ast_transforms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numba_rvsdg/core/datastructures/ast_transforms.py b/numba_rvsdg/core/datastructures/ast_transforms.py index 0cf5b01..c1f791d 100644 --- a/numba_rvsdg/core/datastructures/ast_transforms.py +++ b/numba_rvsdg/core/datastructures/ast_transforms.py @@ -231,7 +231,7 @@ def unparse_code(code: str | Callable[..., Any]) -> list[type[ast.AST]]: elif callable(code): tree = ast.parse(textwrap.dedent(inspect.getsource(code))).body else: - msg = "Type: '{type(self.cod}}' is not implemented." + msg = "Type: '{type(self.code}}' is not implemented." raise NotImplementedError(msg) return tree # type: ignore