Skip to content

Commit

Permalink
tests: Adjust whitespace to satisfy ruff
Browse files Browse the repository at this point in the history
I don't quite get this one. voluptuous belongs with the third party imports,
but it is out of alphabetical order. Or does import always come before
from ... import?
  • Loading branch information
make-all committed Feb 29, 2024
1 parent b8d2d20 commit 9a9883a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_device_config.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""Test the config parser"""
from unittest import IsolatedAsyncioTestCase
from unittest.mock import MagicMock
import voluptuous as vol

import voluptuous as vol
from fuzzywuzzy import fuzz
from homeassistant.components.sensor import SensorDeviceClass

Expand Down

0 comments on commit 9a9883a

Please sign in to comment.