Fix error introduced by #21933 (#21988)

This commit is contained in:
Jc2k 2019-03-13 01:37:33 +00:00 committed by Robbie Trencheny
parent 9428ed7690
commit e618e2f348

View file

@ -236,7 +236,7 @@ class HomeKitWindowCover(HomeKitEntity, CoverDevice):
"""Send open command."""
await self.async_set_cover_position(position=100)
async def close_cover(self, **kwargs):
async def async_close_cover(self, **kwargs):
"""Send close command."""
await self.async_set_cover_position(position=0)