Skip to content

Commit 41ff49c

Browse files
committed
fix: resolve syntax errors in noxfiles due to escaped quotes
1 parent e3a3e4b commit 41ff49c

11 files changed

Lines changed: 22 additions & 22 deletions

File tree

packages/db-dtypes/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,8 +551,8 @@ def mypy(session):
551551
)
552552
session.install("-e", ".")
553553
session.run(
554-
\"mypy\",
555-
f\"--config-file={MYPY_CONFIG_FILE}\",
554+
"mypy",
555+
f"--config-file={MYPY_CONFIG_FILE}",
556556
"-p",
557557
"db_dtypes",
558558
"--check-untyped-defs",

packages/gapic-generator/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -727,8 +727,8 @@ def mypy(session):
727727
)
728728
session.install(".")
729729
session.run(
730-
\"mypy\",
731-
f\"--config-file={MYPY_CONFIG_FILE}\", "-p", "gapic")
730+
"mypy",
731+
f"--config-file={MYPY_CONFIG_FILE}", "-p", "gapic")
732732

733733

734734
@nox.session(python=NEWEST_PYTHON)

packages/google-api-core/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,8 @@ def mypy(session):
382382
"types-protobuf",
383383
)
384384
session.run(
385-
\"mypy\",
386-
f\"--config-file={MYPY_CONFIG_FILE}\", "google", "tests")
385+
"mypy",
386+
f"--config-file={MYPY_CONFIG_FILE}", "google", "tests")
387387

388388

389389
@nox.session(python=DEFAULT_PYTHON_VERSION)

packages/google-auth-httplib2/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ def mypy(session):
111111
)
112112
session.install(".")
113113
session.run(
114-
\"mypy\",
115-
f\"--config-file={MYPY_CONFIG_FILE}\",
114+
"mypy",
115+
f"--config-file={MYPY_CONFIG_FILE}",
116116
"google_auth_httplib2.py",
117117
)
118118

packages/google-auth-oauthlib/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,8 +481,8 @@ def mypy(session):
481481
)
482482
session.install(".")
483483
session.run(
484-
\"mypy\",
485-
f\"--config-file={MYPY_CONFIG_FILE}\",
484+
"mypy",
485+
f"--config-file={MYPY_CONFIG_FILE}",
486486
"-p",
487487
"google_auth_oauthlib",
488488
)

packages/google-cloud-bigquery/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ def mypy(session):
227227
session.run("python", "-m", "pip", "freeze")
228228
with log_package_context(session):
229229
session.run(
230-
\"mypy\",
231-
f\"--config-file={MYPY_CONFIG_FILE}\", "-p", "google", "--show-traceback")
230+
"mypy",
231+
f"--config-file={MYPY_CONFIG_FILE}", "-p", "google", "--show-traceback")
232232

233233

234234
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)

packages/google-cloud-dns/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ def mypy(session):
165165
)
166166
session.install(".")
167167
session.run(
168-
\"mypy\",
169-
f\"--config-file={MYPY_CONFIG_FILE}\",
168+
"mypy",
169+
f"--config-file={MYPY_CONFIG_FILE}",
170170
"-p",
171171
"google",
172172
)

packages/google-cloud-documentai-toolbox/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,8 +508,8 @@ def mypy(session):
508508
)
509509
session.install("-e", ".")
510510
session.run(
511-
\"mypy\",
512-
f\"--config-file={MYPY_CONFIG_FILE}\",
511+
"mypy",
512+
f"--config-file={MYPY_CONFIG_FILE}",
513513
"-p",
514514
"google.cloud.documentai_toolbox",
515515
"--check-untyped-defs",

packages/google-cloud-ndb/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -545,8 +545,8 @@ def mypy(session):
545545
)
546546
session.install("-e", ".")
547547
session.run(
548-
\"mypy\",
549-
f\"--config-file={MYPY_CONFIG_FILE}\",
548+
"mypy",
549+
f"--config-file={MYPY_CONFIG_FILE}",
550550
"-p",
551551
"google.cloud.ndb",
552552
"--check-untyped-defs",

packages/google-cloud-runtimeconfig/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def mypy(session):
110110
)
111111
session.install(".")
112112
session.run(
113-
\"mypy\",
114-
f\"--config-file={MYPY_CONFIG_FILE}\",
113+
"mypy",
114+
f"--config-file={MYPY_CONFIG_FILE}",
115115
"-p",
116116
"google",
117117
)

0 commit comments

Comments
 (0)