From 935b68251b6230b2dcdef2ae7603fc5680ba415b Mon Sep 17 00:00:00 2001 From: Alessandro Molina Date: Wed, 3 Jul 2024 17:09:00 +0200 Subject: [PATCH] Ignore unused import --- python/pyarrow/_substrait.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyarrow/_substrait.pyx b/python/pyarrow/_substrait.pyx index 1d54ea8b6ff64..a2678fc7bc219 100644 --- a/python/pyarrow/_substrait.pyx +++ b/python/pyarrow/_substrait.pyx @@ -31,7 +31,7 @@ try: except ImportError: py_substrait = None else: - import substrait.proto + import substrait.proto # noqa: F401 # TODO GH-37235: Fix exception handling