Skip to content

Commit 0b52f56

Browse files
committed
Ruff linting
1 parent ada1b11 commit 0b52f56

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

duckdb/experimental/spark/sql/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import uuid # noqa: D100
2-
from collections.abc import Iterable
3-
from typing import TYPE_CHECKING, Any, Optional, Union, Sized
2+
from collections.abc import Iterable, Sized
3+
from typing import TYPE_CHECKING, Any, Optional, Union
44

55
if TYPE_CHECKING:
66
from pandas.core.frame import DataFrame as PandasDataFrame

duckdb/udf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Callable
22

33

4-
def vectorized(func: Callable): # noqa: D100
4+
def vectorized(func: Callable):
55
"""Decorate a function with annotated function parameters, so DuckDB can infer that the function should be provided with pyarrow arrays and should expect pyarrow array(s) as output."""
66
import types
77
from inspect import signature

0 commit comments

Comments
 (0)