Skip to main content
Best answer by Gaetan Helness

You should install the python package black via pip or poetry

pip install black

or

poetry install black

5 replies

Gaetan  Helness
MVP ⭐️⭐️⭐️⭐️⭐️
MVP ⭐️⭐️⭐️⭐️⭐️
September 16, 2022

You can clone the repository and run

black .

locally on your environment and push it to the remote repository

Seasoned ⭐️⭐️⭐️
September 16, 2022

Black is failing on Github and for local Poetry install is giving issue in Fiona 1.8.21 installation. 

So when I run black . It is giving Error.PS C:\Users\r.dhande.dhande\Downloads\Air Depployment\accenture-cpg-demo-2> black .
black : The term 'black' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of 
 



 

Gaetan  Helness
MVP ⭐️⭐️⭐️⭐️⭐️
MVP ⭐️⭐️⭐️⭐️⭐️
September 19, 2022

You should install the python package black via pip or poetry

pip install black

or

poetry install black

Expert ⭐️⭐️⭐️⭐️
September 26, 2022

Hi Rushikesh,

Did Gaetan’s answer help you? 

 

Seasoned ⭐️⭐️⭐️
October 4, 2022

Hi @Carin Meems  and @Gaetan Helness 

I install the black few days using pip install black.

Also executing the python -m black handler.py which is reformatting my file as per standards and also it is able to clear the Check Code Standard step in deployment process.

Thanks for the suggestion