Solved

Black black --check is failing

  • 16 September 2022
  • 5 replies
  • 113 views

Hi Team 

I am trying to deploy the code into new env facing issue because of black --check.

icon

Best answer by Gaetan Helness 19 September 2022, 14:31

View original

5 replies

Userlevel 3

You can clone the repository and run

black .

locally on your environment and push it to the remote repository

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 
 



 

Userlevel 3

You should install the python package black via pip or poetry

pip install black

or

poetry install black

Userlevel 3

Hi Rushikesh,

Did Gaetan’s answer help you? 

 

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 

Reply