mirror of
https://github.com/imputnet/helium.git
synced 2026-08-20 00:57:32 +02:00
d1665c81be
fixes #1584
8 lines
198 B
Bash
Executable File
8 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
_current_dir=$(dirname $(readlink -f $0))
|
|
_root_dir=$(dirname $_current_dir)
|
|
python3 -m yapf --style "$_root_dir/.style.yapf" -e '*/third_party/*' -rpi "$_current_dir"
|