Commit 1d88db0c
Changed files (1)
pyproject.toml
@@ -83,10 +83,13 @@ format = { chain = [
"lint" = { chain = [
"check:ruff",
"typecheck",
+ "check:importable",
]}
"check:ruff" = "ruff check ."
"fix:ruff" = "ruff check --fix ."
+"check:importable" = "python -c 'import openai'"
+
typecheck = { chain = [
"typecheck:pyright",
"typecheck:mypy"