mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00
11 lines
139 B
Bash
Executable File
11 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
# Format code with black.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
black \
|
|
--check \
|
|
--fast \
|
|
--quiet \
|
|
homeassistant tests script *.py
|