From 15cd40d77976c91983cdefd5c75a7c2e291566b8 Mon Sep 17 00:00:00 2001 From: tanshu Date: Mon, 21 Jun 2021 10:47:33 +0530 Subject: [PATCH] Fix: Allow linting to run without activating the poetry environment. --- lint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lint.sh b/lint.sh index ca784c3..726ade0 100755 --- a/lint.sh +++ b/lint.sh @@ -4,6 +4,6 @@ cd "$parent_path/bookie" || exit npx prettier --write src/app npx ng lint --fix cd "$parent_path/barker" || exit -isort barker -black barker -flake8 barker +poetry run isort barker +poetry run black barker +poetry run flake8 barker