Skip to content

Commit 8dd9661

Browse files
committed
style(mypy): format modified noxfile.py files with black
1 parent 1afd309 commit 8dd9661

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

packages/google-auth/noxfile.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,16 @@ def mypy(session):
159159
"types-mock",
160160
"pytest<8.0.0",
161161
)
162-
session.run("mypy",
163-
f"--config-file={MYPY_CONFIG_FILE}", "-p", "google", "-p", "tests", "-p", "tests_async")
162+
session.run(
163+
"mypy",
164+
f"--config-file={MYPY_CONFIG_FILE}",
165+
"-p",
166+
"google",
167+
"-p",
168+
"tests",
169+
"-p",
170+
"tests_async",
171+
)
164172

165173

166174
@nox.session(python=ALL_PYTHON)

packages/google-crc32c/noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323

2424
HERE = os.path.dirname(__file__)
2525
# Path to the centralized mypy configuration file at the repository root.
26-
MYPY_CONFIG_FILE = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(HERE))), "mypy.ini")
26+
MYPY_CONFIG_FILE = os.path.join(
27+
os.path.dirname(os.path.dirname(os.path.abspath(HERE))), "mypy.ini"
28+
)
2729

2830
# Constants
2931
DEFAULT_PYTHON_VERSION = "3.14"

0 commit comments

Comments
 (0)