Skip to content

Commit

Permalink
Fix error introduced by #21933 (#21988)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jc2k authored and robbiet480 committed Mar 13, 2019
1 parent 9428ed7 commit e618e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/homekit_controller/cover.py
Expand Up @@ -236,7 +236,7 @@ async def async_open_cover(self, **kwargs):
"""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)

Expand Down

0 comments on commit e618e2f

Please sign in to comment.