Skip to content

Commit eb19712

Browse files
authored
fix: pytype client errors (#146)
* feat: add pytype to gitignore * fix: type ignore api_core
1 parent afff842 commit eb19712

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

‎.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ pip-log.txt
2929
.nox
3030
.cache
3131
.pytest_cache
32+
.pytype
3233

3334

3435
# Mac

‎google/cloud/firestore_v1/base_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
"""
2626
import os
2727

28-
import google.api_core.client_options
29-
import google.api_core.path_template
28+
import google.api_core.client_options # type: ignore
29+
import google.api_core.path_template # type: ignore
3030
from google.api_core.gapic_v1 import client_info # type: ignore
3131
from google.cloud.client import ClientWithProject # type: ignore
3232

0 commit comments

Comments
 (0)