zykrix
Re-added phidata as a normal folder (final fix)
c96b98a
Raw
History Blame Contribute Delete
521 Bytes
#!/bin/bash
############################################################################
#
# This script formats the phidata codebase using ruff
# Usage:
# ./scripts/format.sh
#
############################################################################
CURR_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
REPO_ROOT="$( dirname ${CURR_DIR} )"
source ${CURR_DIR}/_utils.sh
main() {
print_heading "Formatting phidata"
print_heading "Running: ruff format ${REPO_ROOT}"
ruff format ${REPO_ROOT}
}
main "$@"