diff --git a/scripts.py b/scripts.py index b55c9c6acd3c1324242cc499c4a67ce011e1f903..d0374e3562ef1bbe4c3f71514dbcda3bc68cb94b 100644 --- a/scripts.py +++ b/scripts.py @@ -70,8 +70,8 @@ def help(): def format_check(): # Check code format - check_call(["isort", "--check", "--diff", ".", "--skip", ".poetry"]) - check_call(["black", "--check", "--diff", ".", "--exclude", ".poetry"]) + check_call(["isort", "--check", "--diff", ".", "--skip", ".venv"]) + check_call(["black", "--check", "--diff", ".", "--exclude", ".venv"]) def format():