Skip to content

Commit 4c16435

Browse files
PR Feedback
1 parent 761b272 commit 4c16435

File tree

4 files changed

+6
-22
lines changed

4 files changed

+6
-22
lines changed

pandas-stubs/core/computation/pytables.pyi

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,6 @@ class BinOp(ops.BinOp):
2121
class FilterBinOp(BinOp):
2222
filter: tuple[Any, Any, Index] | None = ...
2323

24-
class JointFilterBinOp(FilterBinOp):
25-
def format(self) -> None: ...
26-
27-
class ConditionBinOp(BinOp):
28-
def invert(self) -> None: ...
29-
condition = ...
30-
31-
class JointConditionBinOp(ConditionBinOp):
32-
condition = ...
33-
34-
class UnaryOp(ops.UnaryOp): ...
35-
36-
class PyTablesExprVisitor(BaseExprVisitor):
37-
const_type = ...
38-
term_type = ...
39-
4024
class PyTablesExpr(expr.Expr):
4125
encoding = ...
4226
condition = ...

pandas-stubs/io/excel/_base.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ from typing_extensions import (
2424
TypeVar,
2525
)
2626
from xlrd.book import Book
27-
from xlsxwriter.workbook import (
28-
Workbook as XlsxWorkbook, # pyright: ignore[reportMissingTypeStubs]
27+
from xlsxwriter.workbook import ( # pyright: ignore[reportMissingTypeStubs]
28+
Workbook as XlsxWorkbook,
2929
)
3030

3131
from pandas._libs.lib import _NoDefaultDoNotUse

pandas-stubs/io/formats/style.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ from openpyxl.workbook.workbook import Workbook as OpenXlWorkbook
1717
from pandas.core.frame import DataFrame
1818
from pandas.core.series import Series
1919
from typing_extensions import Self
20-
from xlsxwriter.workbook import (
21-
Workbook as XlsxWorkbook, # pyright: ignore[reportMissingTypeStubs]
20+
from xlsxwriter.workbook import ( # pyright: ignore[reportMissingTypeStubs]
21+
Workbook as XlsxWorkbook,
2222
)
2323

2424
from pandas._typing import (

tests/test_io.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
import sqlalchemy.orm
4848
import sqlalchemy.orm.decl_api
4949
from typing_extensions import assert_type
50-
from xlsxwriter.workbook import (
51-
Workbook as XlsxWorkbook, # pyright: ignore[reportMissingTypeStubs]
50+
from xlsxwriter.workbook import ( # pyright: ignore[reportMissingTypeStubs]
51+
Workbook as XlsxWorkbook,
5252
)
5353

5454
from tests import (

0 commit comments

Comments
 (0)