File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,5 +4,7 @@ strict = True
44exclude = noxfile\.py
55warn_unused_configs = True
66
7- [mypy-avro.*,backoff,flaky]
7+ ; Ignore errors caused due to missing library stubs or py.typed marker
8+ ; Refer https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-library-stubs-or-py-typed-marker
9+ [mypy-avro.*,backoff,flaky,google.cloud.*]
810ignore_missing_imports = True
Original file line number Diff line number Diff line change @@ -528,7 +528,7 @@ def update_subscription_with_dead_letter_policy(
528528 )
529529
530530 with subscriber :
531- subscription_after_update = subscriber .update_subscription (
531+ subscription_after_update : gapic_types . Subscription = subscriber .update_subscription (
532532 request = {"subscription" : subscription , "update_mask" : update_mask }
533533 )
534534
@@ -573,7 +573,7 @@ def remove_dead_letter_policy(
573573 )
574574
575575 with subscriber :
576- subscription_after_update = subscriber .update_subscription (
576+ subscription_after_update : gapic_types . Subscription = subscriber .update_subscription (
577577 request = {"subscription" : subscription , "update_mask" : update_mask }
578578 )
579579
You can’t perform that action at this time.
0 commit comments