Skip to content

Commit 03c5265

Browse files
1 parent 45a7397 commit 03c5265

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

‎google/cloud/pubsub_v1/subscriber/scheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def shutdown(
162162
work_item = self._executor._work_queue.get(block=False)
163163
if work_item is None: # Exceutor in shutdown mode.
164164
continue
165-
dropped_messages.append(work_item.args[0]) #type: ignore[index]
165+
dropped_messages.append(work_item.args[0]) # type: ignore[index]
166166
except queue.Empty:
167167
pass
168168

‎noxfile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
MYPY_VERSION = "mypy==1.10.0"
3636

3737
DEFAULT_PYTHON_VERSION = "3.8"
38+
3839
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
3940
UNIT_TEST_STANDARD_DEPENDENCIES = [
4041
"mock",

0 commit comments

Comments
 (0)