Skip to content

Commit

Permalink
ci: fix coverage gap induced by typing
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Oct 14, 2021
1 parent fbdc354 commit 65a472b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/bigtable/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
RETRYABLE_CODES: Set[int] = set()

for retryable in RETRYABLE_MUTATION_ERRORS:
if retryable.grpc_status_code is not None:
if retryable.grpc_status_code is not None: # pragma: NO COVER
RETRYABLE_CODES.add(retryable.grpc_status_code.value[0])


Expand Down

0 comments on commit 65a472b

Please sign in to comment.