From 8b61639c5f9d2c77c6a81b891533ed72ff44a91e Mon Sep 17 00:00:00 2001 From: Alessandro Molina Date: Wed, 16 Oct 2024 22:39:11 +0000 Subject: [PATCH] Revert linter change --- python/pyarrow/lib.pyx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/pyarrow/lib.pyx b/python/pyarrow/lib.pyx index 95f09537c02cc..6b82eb6566896 100644 --- a/python/pyarrow/lib.pyx +++ b/python/pyarrow/lib.pyx @@ -175,8 +175,7 @@ def _ensure_cuda_loaded(): if __cuda_loaded is not True: raise ImportError( "Trying to import data on a CUDA device, but PyArrow is not built with " - f"CUDA support.\n(importing 'pyarrow.cuda' resulted in \"{ - __cuda_loaded}\")." + f"CUDA support.\n(importing 'pyarrow.cuda' resulted in \"{__cuda_loaded}\")." )