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

Commit a3b49f4

Browse files
committed
Fixed linting errors
1 parent 903c532 commit a3b49f4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def format(session):
151151
@nox.session(python=DEFAULT_PYTHON_VERSION)
152152
def lint_setup_py(session):
153153
"""Verify that setup.py is valid (including RST check)."""
154-
session.install("docutils", "pygments")
154+
session.install("setuptools", "docutils", "pygments")
155155
session.run("python", "setup.py", "check", "--restructuredtext", "--strict")
156156

157157

tests/system/test_system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ def retryable():
10581058
# http and gapic results should be consistent
10591059
self.assertEqual(gapic_list[0].insert_id, http_list[0].insert_id)
10601060
# returned logs should be in descending order
1061-
self.assertEqual(gapic_list[0].payload, f"test {log_count-1}")
1061+
self.assertEqual(gapic_list[0].payload, f"test {log_count - 1}")
10621062

10631063
RetryErrors(
10641064
(ServiceUnavailable, InternalServerError, AssertionError),

0 commit comments

Comments
 (0)