File tree Expand file tree Collapse file tree 4 files changed +6
-22
lines changed
Expand file tree Collapse file tree 4 files changed +6
-22
lines changed Original file line number Diff line number Diff line change @@ -21,22 +21,6 @@ class BinOp(ops.BinOp):
2121class 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-
4024class PyTablesExpr (expr .Expr ):
4125 encoding = ...
4226 condition = ...
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ from typing_extensions import (
2424 TypeVar ,
2525)
2626from 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
3131from pandas ._libs .lib import _NoDefaultDoNotUse
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ from openpyxl.workbook.workbook import Workbook as OpenXlWorkbook
1717from pandas .core .frame import DataFrame
1818from pandas .core .series import Series
1919from 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
2424from pandas ._typing import (
Original file line number Diff line number Diff line change 4747import sqlalchemy .orm
4848import sqlalchemy .orm .decl_api
4949from 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
5454from tests import (
You can’t perform that action at this time.
0 commit comments