5252from pyiceberg .catalog .noop import NoopCatalog
5353from pyiceberg .expressions import BoundReference
5454from pyiceberg .io import (
55- GCS_PROJECT_ID ,
56- GCS_SERVICE_HOST ,
57- GCS_TOKEN ,
58- GCS_TOKEN_EXPIRES_AT_MS ,
59- ADLS_ACCOUNT_NAME ,
6055 ADLS_ACCOUNT_KEY ,
56+ ADLS_ACCOUNT_NAME ,
6157 ADLS_BLOB_STORAGE_AUTHORITY ,
62- ADLS_DFS_STORAGE_SCHEME ,
6358 ADLS_BLOB_STORAGE_SCHEME ,
6459 ADLS_DFS_STORAGE_AUTHORITY ,
60+ ADLS_DFS_STORAGE_SCHEME ,
61+ GCS_PROJECT_ID ,
62+ GCS_SERVICE_HOST ,
63+ GCS_TOKEN ,
64+ GCS_TOKEN_EXPIRES_AT_MS ,
6565 fsspec ,
6666 load_file_io ,
6767)
@@ -355,7 +355,7 @@ def table_schema_with_all_types() -> Schema:
355355
356356
357357@pytest .fixture (params = ["abfss" , "wasbs" ])
358- def adls_scheme (request ) :
358+ def adls_scheme (request : pytest . FixtureRequest ) -> str :
359359 return request .param
360360
361361
@@ -2120,7 +2120,7 @@ def adls_fsspec_fileio(request: pytest.FixtureRequest) -> Generator[FsspecFileIO
21202120
21212121
21222122@pytest .fixture
2123- def pyarrow_fileio_gcs (request : pytest .FixtureRequest ) -> ' PyArrowFileIO' :
2123+ def pyarrow_fileio_gcs (request : pytest .FixtureRequest ) -> " PyArrowFileIO" :
21242124 from pyiceberg .io .pyarrow import PyArrowFileIO
21252125
21262126 properties = {
@@ -2135,10 +2135,11 @@ def pyarrow_fileio_gcs(request: pytest.FixtureRequest) -> 'PyArrowFileIO':
21352135@pytest .fixture
21362136def pyarrow_fileio_adls (request : pytest .FixtureRequest ) -> Generator [Any , None , None ]:
21372137 from azure .storage .blob import BlobServiceClient
2138+
21382139 from pyiceberg .io .pyarrow import PyArrowFileIO
21392140
21402141 azurite_url = request .config .getoption ("--adls.endpoint" )
2141- azurite_scheme , azurite_authority = azurite_url .split (' ://' , 1 )
2142+ azurite_scheme , azurite_authority = azurite_url .split (" ://" , 1 )
21422143
21432144 azurite_account_name = request .config .getoption ("--adls.account-name" )
21442145 azurite_account_key = request .config .getoption ("--adls.account-key" )
0 commit comments