esadek opened a new issue, #4048: URL: https://github.com/apache/arrow-adbc/issues/4048
There are unused imports in [`python/adbc_driver_manager/adbc_driver_manager/_lib.py`](https://github.com/apache/arrow-adbc/blob/6b83ec4a0c03bc6058515dbaa4e3d4f6137815fe/python/adbc_driver_manager/adbc_driver_manager/_lib.pyi#L23). Here's the output from Ruff: ``` F401 [*] `typing.overload` imported but unused --> python/adbc_driver_manager/adbc_driver_manager/_lib.pyi:23:20 | 21 | import pathlib 22 | import typing 23 | from typing import overload, Any, ClassVar, List, Literal, Optional, Tuple, Union | ^^^^^^^^ 24 | 25 | import typing_extensions | help: Remove unused import F401 [*] `typing.ClassVar` imported but unused --> python/adbc_driver_manager/adbc_driver_manager/_lib.pyi:23:35 | 21 | import pathlib 22 | import typing 23 | from typing import overload, Any, ClassVar, List, Literal, Optional, Tuple, Union | ^^^^^^^^ 24 | 25 | import typing_extensions | help: Remove unused import F401 [*] `typing.Literal` imported but unused --> python/adbc_driver_manager/adbc_driver_manager/_lib.pyi:23:51 | 21 | import pathlib 22 | import typing 23 | from typing import overload, Any, ClassVar, List, Literal, Optional, Tuple, Union | ^^^^^^^ 24 | 25 | import typing_extensions | help: Remove unused import Found 3 errors. ``` -- 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]
