From fc2ecc10aac3097bccf1b3b941ddbcb24c9d92a8 Mon Sep 17 00:00:00 2001 From: Scott Giminiani Date: Tue, 27 Jun 2023 15:18:37 -0400 Subject: [PATCH] Remove example commands for flake8 and isort (#1801) --- docs/development_testing.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/development_testing.md b/docs/development_testing.md index 89b63502..d6a37922 100644 --- a/docs/development_testing.md +++ b/docs/development_testing.md @@ -84,10 +84,9 @@ pre-commit run --show-diff-on-failure The linters are also available directly, you can run tests on individual files: ```shell -flake8 homeassistant/core.py +ruff homeassistant/core.py pylint homeassistant/core.py black homeassistant/core.py -isort homeassistant/core.py ``` ### Notes on PyLint and PEP8 validation