Files
homeassistant-core/script/check_format
T

11 lines
139 B
Bash
Raw Normal View History

2019-07-30 16:59:12 -07:00
#!/bin/sh
# Format code with black.
cd "$(dirname "$0")/.."
black \
--check \
--fast \
--quiet \
2019-08-01 18:30:49 +03:00
homeassistant tests script *.py