2018-11-20 00:48:22 +00:00
|
|
|
:: Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
:: Licensed under the MIT License.
|
|
|
|
|
|
2022-04-23 13:23:04 +00:00
|
|
|
:: Before running this, please make sure python.exe is in path, and black is installed like the following
|
|
|
|
|
:: pip install --upgrade black isort
|
2020-03-20 21:34:10 +00:00
|
|
|
|
2022-04-23 13:23:04 +00:00
|
|
|
:: For more info about black, see https://github.com/psf/black
|
2020-03-20 21:34:10 +00:00
|
|
|
|
2022-04-23 13:23:04 +00:00
|
|
|
python -m isort ./python
|
|
|
|
|
python -m isort ./test
|
|
|
|
|
python -m black ./python
|
|
|
|
|
python -m black ./test
|
2020-03-20 21:34:10 +00:00
|
|
|
|
2022-04-23 13:23:04 +00:00
|
|
|
if errorlevel 1 echo please install python, then pip install --upgrade black isort
|