Skip to content
Snippets Groups Projects
Commit 3d8e9b42 authored by Paulus Schoutsen's avatar Paulus Schoutsen
Browse files

Lint fixes

parent 7c6dcdb0
No related branches found
No related tags found
No related merge requests found
......@@ -156,12 +156,12 @@ class LocationMethods(object):
states = list(entities)
else:
if isinstance(entities, State):
entity_id = entities.entity_id
gr_entity_id = entities.entity_id
else:
entity_id = str(entities)
gr_entity_id = str(entities)
states = [self._hass.states.get(entity_id) for entity_id
in group.expand_entity_ids(self._hass, [entity_id])]
in group.expand_entity_ids(self._hass, [gr_entity_id])]
return loc_helper.closest(latitude, longitude, states)
......
......@@ -292,7 +292,6 @@ class TestUtilTemplate(unittest.TestCase):
self.hass,
'{{ distance("123", states.test_object_2) }}'))
def test_closest_function_home_vs_domain(self):
self.hass.states.set('test_domain.object', 'happy', {
'latitude': self.hass.config.latitude + 0.1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment