From 442b175cbf0675052f30e8ddb7c5e51b3937cbb7 Mon Sep 17 00:00:00 2001 From: Jason Paulos Date: Wed, 27 Apr 2022 14:19:45 -0700 Subject: [PATCH 1/2] Fix abi import --- pyteal/ast/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyteal/ast/__init__.py b/pyteal/ast/__init__.py index 7d951442e..87b4399a9 100644 --- a/pyteal/ast/__init__.py +++ b/pyteal/ast/__init__.py @@ -138,7 +138,7 @@ from pyteal.ast.multi import MultiValue # abi -from pyteal.ast import abi +import pyteal.ast.abi as abi __all__ = [ "Expr", From 36464232279f200161c8bdad27f7ad88983b945d Mon Sep 17 00:00:00 2001 From: Jason Paulos Date: Wed, 27 Apr 2022 14:28:12 -0700 Subject: [PATCH 2/2] ignore flake8 --- pyteal/ast/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyteal/ast/__init__.py b/pyteal/ast/__init__.py index 87b4399a9..d131e7344 100644 --- a/pyteal/ast/__init__.py +++ b/pyteal/ast/__init__.py @@ -138,7 +138,7 @@ from pyteal.ast.multi import MultiValue # abi -import pyteal.ast.abi as abi +import pyteal.ast.abi as abi # noqa: I250 __all__ = [ "Expr",