Skip to content

Commit 9512393

Browse files
authored
Typ excel writer _base (#45111)
1 parent d2a9a22 commit 9512393

File tree

5 files changed

+183
-79
lines changed

5 files changed

+183
-79
lines changed

.github/workflows/code-checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: Install pyright
7676
# note: keep version in sync with .pre-commit-config.yaml
77-
run: npm install -g [email protected].200
77+
run: npm install -g [email protected].202
7878

7979
- name: Build Pandas
8080
id: build

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ repos:
7878
types: [python]
7979
stages: [manual]
8080
# note: keep version in sync with .github/workflows/ci.yml
81-
additional_dependencies: ['[email protected].200']
81+
additional_dependencies: ['[email protected].202']
8282
- repo: local
8383
hooks:
8484
- id: flake8-rst

pandas/_typing.py

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
DatetimeLikeScalar = Union["Period", "Timestamp", "Timedelta"]
8585
PandasScalar = Union["Period", "Timestamp", "Timedelta", "Interval"]
8686
Scalar = Union[PythonScalar, PandasScalar]
87+
IntStrT = TypeVar("IntStrT", int, str)
8788

8889

8990
# timestamp and timedelta convertible types

0 commit comments

Comments
 (0)