Skip to content

Commit ef4eeeb

Browse files
GH128 PR feedback
1 parent 81c5109 commit ef4eeeb

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

pandas-stubs/io/sql.pyi

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from abc import abstractmethod
21
from collections.abc import (
32
Callable,
43
Generator,
@@ -144,7 +143,6 @@ def read_sql(
144143
) -> DataFrame: ...
145144

146145
class PandasSQL:
147-
@abstractmethod
148146
def to_sql(
149147
self,
150148
frame: DataFrame,
@@ -161,7 +159,7 @@ class PandasSQL:
161159
| None
162160
) = ...,
163161
engine: str = ...,
164-
**engine_kwargs,
162+
**engine_kwargs: dict[str, Any] | None,
165163
) -> int | None: ...
166164

167165
class SQLTable:

pandas-stubs/util/_tester.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
def test(extra_args: list[str] | None = None, run_doctests: bool = False) -> None: ...
1+
def test(extra_args: list[str] | None = ..., run_doctests: bool = ...) -> None: ...

pandas-stubs/util/_validators.pyi

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)