Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 65a472b

Browse files
committed
ci: fix coverage gap induced by typing
1 parent fbdc354 commit 65a472b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

google/cloud/bigtable/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
RETRYABLE_CODES: Set[int] = set()
6262

6363
for retryable in RETRYABLE_MUTATION_ERRORS:
64-
if retryable.grpc_status_code is not None:
64+
if retryable.grpc_status_code is not None: # pragma: NO COVER
6565
RETRYABLE_CODES.add(retryable.grpc_status_code.value[0])
6666

6767

0 commit comments

Comments
 (0)