diff options
author | Devaev Maxim <[email protected]> | 2020-05-22 14:36:01 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-05-22 14:36:01 +0300 |
commit | 0fa0680bd7c28e246c70b5a5102e38a592bd0f0d (patch) | |
tree | d33b4d5e0bbed8c8e6600402990959900baba26d /kvmd/aiotools.py | |
parent | 08950a5fbda89970af5043effa89886ae41fbb42 (diff) |
lint fixes
Diffstat (limited to 'kvmd/aiotools.py')
-rw-r--r-- | kvmd/aiotools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/aiotools.py b/kvmd/aiotools.py index bd4bd37e..6f76423e 100644 --- a/kvmd/aiotools.py +++ b/kvmd/aiotools.py @@ -204,5 +204,5 @@ async def run_region_task( if entered.done(): return - if (exc := task.exception()) is not None: # noqa: E203,E231 + if (exc := task.exception()) is not None: raise exc |