Skip to content

Commit ce8dd7b

Browse files
committed
Oops
1 parent 94ab3b0 commit ce8dd7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zigpy_zigate/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def async_run_in_executor(function):
162162
"""Decorator to make a sync function async."""
163163

164164
async def replacement(*args):
165-
return asyncio.get_running_loop().run_in_executor(None, function, *args)
165+
return await asyncio.get_running_loop().run_in_executor(None, function, *args)
166166

167167
replacement._sync_func = function
168168

0 commit comments

Comments
 (0)