From 8ad9883cfabc18efc7d219c4363ae082f6f7931a Mon Sep 17 00:00:00 2001 From: Brandon Clayton <bclayton@usgs.gov> Date: Thu, 21 Nov 2024 11:56:13 -0700 Subject: [PATCH] skip venv --- scripts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts.py b/scripts.py index b55c9c6..d0374e3 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(): -- GitLab