Skip to content

Commit 093ef1d

Browse files
committed
Resolve all the pre-commit issues
1 parent 4f6734b commit 093ef1d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,19 +217,18 @@ def pinned_requirements(path: Path) -> Iterator[Tuple[str, str]]:
217217
release.commit_file(session, ".", message=message)
218218

219219

220-
221220
@nox.session
222221
def coverage(session: nox.Session) -> None:
223222
if not os.path.exists("./.coverage-output"):
224-
os.mkdirs("./coverage-output")
223+
os.mkdir("./coverage-output")
225224
session.run(
226225
"pytest",
227226
"--cov=pip",
228227
"--cov-config=./setup.cfg",
229-
env = {
228+
env={
230229
"COVERAGE_OUTPUT_DIR": "./coverage-output",
231230
"COVERAGE_PROCESS_START": "./setup.cfg",
232-
}
231+
},
233232
)
234233

235234

0 commit comments

Comments
 (0)