Skip to content

Commit ff805a9

Browse files
committed
Fix ruff in script
1 parent 3a8cd90 commit ff805a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/core-testing.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ if [ -z "${GITHUB_ACTIONS}" ] || [ "$1" == "quality" ] ; then
211211
echo ""
212212
set +e
213213
echo "... ruff-ing component..."
214-
ruff --fix homeassistant/components/plugwise_usb/*py || echo "Ruff applied autofixes"
214+
ruff check --fix homeassistant/components/plugwise_usb/*py || echo "Ruff applied autofixes"
215215
echo "... ruff-ing tests..."
216-
ruff --fix tests/components/plugwise_usb/*py || echo "Ruff applied autofixes"
216+
ruff check --fix tests/components/plugwise_usb/*py || echo "Ruff applied autofixes"
217217
set -e
218218
echo "... black-ing ..."
219219
black homeassistant/components/plugwise_usb/*py tests/components/plugwise_usb/*py || exit

0 commit comments

Comments
 (0)