From 75d9b858d73bf3ed31597e554b27520e3e31f72e Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Sat, 29 Feb 2020 17:23:57 +0300 Subject: moved AioExclusiveRegion to aiotools --- kvmd/plugins/atx/gpio.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'kvmd/plugins/atx/gpio.py') diff --git a/kvmd/plugins/atx/gpio.py b/kvmd/plugins/atx/gpio.py index c657a7f3..cca58a18 100644 --- a/kvmd/plugins/atx/gpio.py +++ b/kvmd/plugins/atx/gpio.py @@ -29,7 +29,6 @@ from typing import AsyncGenerator from ...logging import get_logger from ... import aiotools -from ... import aioregion from ... import gpio from ...yamlconf import Option @@ -75,7 +74,7 @@ class Plugin(BaseAtx): # pylint: disable=too-many-instance-attributes self.__state_poll = state_poll - self.__region = aioregion.AioExclusiveRegion(AtxIsBusyError) + self.__region = aiotools.AioExclusiveRegion(AtxIsBusyError) @classmethod def get_plugin_options(cls) -> Dict: @@ -163,7 +162,7 @@ class Plugin(BaseAtx): # pylint: disable=too-many-instance-attributes @aiotools.atomic async def __click(self, name: str, pin: int, delay: float) -> None: - with aiotools.unregion_only_on_exception(self.__region): + with self.__region.exit_only_on_exception(): await self.__inner_click(name, pin, delay) @aiotools.tasked -- cgit v1.2.3