format_py_files.sh 248 Bytes
Newer Older
Przemek Tredak's avatar
Przemek Tredak committed
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# See LICENSE for license information.

python_files=`find transformer_engine tests setup.py examples -name '*.py'`
for f in $python_files
do
  black $f
done