Add black --version call before black --check

This commit is contained in:
Micah Jerome Ellison 2023-07-15 12:30:05 -07:00
parent f247d07d61
commit 0f12cc51a6

View file

@ -93,6 +93,7 @@ lint.sequence = [
"poetry check", "poetry check",
"ruff --version", "ruff --version",
"ruff .", "ruff .",
"black --version .",
"black --check ." "black --check ."
] ]