10 lines
139 B
Bash
Executable file
10 lines
139 B
Bash
Executable file
#!/bin/sh
|
|
# Format code with black.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
black \
|
|
--check \
|
|
--fast \
|
|
--quiet \
|
|
homeassistant tests script *.py
|