Xuanwo commented on PR #4135: URL: https://github.com/apache/opendal/pull/4135#issuecomment-1925410754
Thanks for your effort! Now our ruff check is running. Lint like the following could be ignored: ```shell python/opendal/__init__.py:18:1: F403 `from ._opendal import *` used; unable to detect undefined names python/opendal/__init__.py:20:11: F405 `_opendal` may be undefined, or defined from star imports python/opendal/__init__.py:21:11: F405 `_opendal` may be undefined, or defined from star imports ``` `_opendal` is from our rust binding that not in current context. And the error like ``` benchmark/async_origin_s3_benchmark_with_gevent.py:31:1: E402 Module level import not at top of file ``` Could be fixed easily. -- 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]
