Skip to content

Commit

Permalink
fixed no cover comments
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sanche committed Oct 19, 2023
1 parent 9a10dc2 commit 3bb4bf5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion google/cloud/firestore_v1/async_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from google.cloud.firestore_v1.base_document import DocumentSnapshot
from typing import AsyncGenerator, List, Optional, Type, TYPE_CHECKING

if TYPE_CHECKING: # pragma: no cover
if TYPE_CHECKING: # pragma: NO COVER
# Types needed only for Type Hints
from google.cloud.firestore_v1.transaction import Transaction
from google.cloud.firestore_v1.field_path import FieldPath
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/firestore_v1/base_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
)


if TYPE_CHECKING: # pragma: no cover
if TYPE_CHECKING: # pragma: NO COVER
# Types needed only for Type Hints
from google.cloud.firestore_v1.base_document import DocumentSnapshot
from google.cloud.firestore_v1.transaction import Transaction
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/firestore_v1/base_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Types needed only for Type Hints
from google.cloud.firestore_v1.base_document import DocumentSnapshot

if TYPE_CHECKING: # pragma: no cover
if TYPE_CHECKING: # pragma: NO COVER
from google.cloud.firestore_v1.field_path import FieldPath

_BAD_DIR_STRING: str
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/firestore_v1/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from google.cloud.firestore_v1.watch import Watch
from typing import Any, Callable, Generator, List, Optional, Type, TYPE_CHECKING

if TYPE_CHECKING: # pragma: no cover
if TYPE_CHECKING: # pragma: NO COVER
from google.cloud.firestore_v1.field_path import FieldPath


Expand Down

0 comments on commit 3bb4bf5

Please sign in to comment.