Skip to content

Commit 845a978

Browse files
chore: update noxfile.py
1 parent 3057ea5 commit 845a978

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
BLACK_VERSION = "black==24.10.0"
2424
ISORT_VERSION = "isort==5.13.2"
2525

26-
LINT_PATHS = ["google", "tests", "noxfile.py", "setup.py"]
26+
LINT_PATHS = ["google", "tests", "noxfile.py"]
2727

2828
TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
2929

@@ -71,7 +71,7 @@ def lint(session):
7171
"--non-interactive",
7272
"--show-traceback",
7373
)
74-
# verify that setup.py is valid
74+
# verify that pyproject.toml is valid
7575
session.run("python", "-m", "build", "--sdist")
7676
session.run("twine", "check", "--strict", "dist/*")
7777

tests/system/test_asyncpg_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ async def getconn(
140140
password=password,
141141
db=db,
142142
ip_type="public", # can also be "private" or "psc",
143-
**kwargs
143+
**kwargs,
144144
)
145145
return conn
146146

0 commit comments

Comments
 (0)