lidavidm commented on PR #3855:
URL: https://github.com/apache/arrow-adbc/pull/3855#issuecomment-3709715709

   The linter made a change :sweat_smile: 
   
   ```diff
    diff --git a/python/adbc_driver_postgresql/tests/test_dbapi.py 
b/python/adbc_driver_postgresql/tests/test_dbapi.py
   index aae214275..5fe72cfa3 100644
   --- a/python/adbc_driver_postgresql/tests/test_dbapi.py
   +++ b/python/adbc_driver_postgresql/tests/test_dbapi.py
   @@ -24,6 +24,7 @@ import numpy
    import pyarrow
    import pyarrow.dataset
    import pytest
   +
    from adbc_driver_postgresql import ConnectionOptions, StatementOptions, 
dbapi
    
    
   @@ -81,7 +82,9 @@ def test_get_objects_schema_filter_outside_search_path(
        )
    
        catalog_name = postgres.adbc_current_catalog
   -    catalog = next((row for row in metadata if row["catalog_name"] == 
catalog_name), None)
   +    catalog = next(
   +        (row for row in metadata if row["catalog_name"] == catalog_name), 
None
   +    )
        assert catalog is not None
    
        schemas = catalog["catalog_db_schemas"]
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to