Xuanwo commented on code in PR #3467: URL: https://github.com/apache/incubator-opendal/pull/3467#discussion_r1380013147
########## bindings/python/tests/conftest.py: ########## @@ -56,12 +56,16 @@ def setup_config(service_name): @pytest.fixture() def operator(service_name, setup_config): - return opendal.Operator(service_name, **setup_config).layer(opendal.layers.RetryLayer()) + return opendal.Operator(service_name, **setup_config).layer( + opendal.layers.RetryLayer() + ) @pytest.fixture() def async_operator(service_name, setup_config): - return opendal.AsyncOperator(service_name, **setup_config).layer(opendal.layers.RetryLayer()) + return opendal.AsyncOperator(service_name, **setup_config).layer( Review Comment: It's time for us to introduce a python formatter. How about using ruff? -- 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]
