Просмотр исходного кода

tests: Adjust whitespace to satisfy ruff

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?
Jason Rumney 2 лет назад
Родитель
Сommit
9a9883a2e4
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      tests/test_device_config.py

+ 1 - 1
tests/test_device_config.py

@@ -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