Skip to content

Commit 1ef3ea0

Browse files
authored
chore: fix mypy (googleapis#15535)
Fixes googleapis#15533
1 parent 275b1a0 commit 1ef3ea0

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

.librarian/generator-input/client-post-processing/integrate-isolated-handwritten-code.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,3 +305,16 @@ replacements:
305305
"pandas-stubs",
306306
)
307307
count: 1
308+
- paths: [
309+
packages/google-cloud-bigquery-storage/noxfile.py,
310+
]
311+
before: |
312+
"types-protobuf",
313+
\ \)
314+
\ session.install\("."\)
315+
after: |
316+
"types-protobuf",
317+
"pandas-stubs",
318+
)
319+
session.install(".[fastavro]")
320+
count: 1

packages/google-cloud-bigquery-storage/noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,9 @@ def mypy(session):
112112
"mypy<1.16.0",
113113
"types-requests",
114114
"types-protobuf",
115+
"pandas-stubs",
115116
)
116-
session.install(".")
117+
session.install(".[fastavro]")
117118
session.run(
118119
"mypy",
119120
"-p",

0 commit comments

Comments
 (0)