We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d7773 commit c7203c2Copy full SHA for c7203c2
bindings/python/justfile
@@ -121,7 +121,7 @@ lint: setup
121
@cargo clippy -- -D warnings -D clippy::dbg_macro -A clippy::incompatible_msrv
122
@echo "{{ BOLD }}--- Running Python linter ---{{ NORMAL }}"
123
@uv run ruff check
124
- @uv run ty check
+ @uv run ty check ./python
125
126
# Format all code (Rust, Python, etc.)
127
[group('lint')]
bindings/python/python/opendal/__init__.py
@@ -15,8 +15,7 @@
15
# specific language governing permissions and limitations
16
# under the License.
17
18
-# ruff: noqa: D104
19
-import builtins
+# ruff: noqa: D104, F405, F403
20
21
from opendal._core import * # ty: ignore
22
from opendal.operator import AsyncOperator, Operator
0 commit comments