Skip to content

Commit 0a89ecb

Browse files
authored
Fixed FileNotFound error while running hatch run lint-py (#1023)
* Fixed FileNotFound error while running hatch run lint-py * Revert previous changes and add minor fix
1 parent 7428340 commit 0a89ecb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def lint_py(context: Context, fix: bool = False):
108108
context.run("black --check --diff .")
109109
in_py(
110110
context,
111-
f"flake8 --toml-config {ROOT / 'pyproject.toml'} .",
111+
f"flake8 --toml-config '{ROOT / 'pyproject.toml'}' .",
112112
"hatch run lint:all",
113113
)
114114

0 commit comments

Comments
 (0)