Skip to content

Commit

Permalink
remove asyncio.coroutine (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
cocolato committed Jan 2, 2024
1 parent d44d33d commit 1d8a137
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fire/test_components_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ def lru_cache_decorated(arg1):

class WithAsyncio(object):

@asyncio.coroutine
def double(self, count=0):
async def double(self, count=0):
return 2 * count


Expand Down

0 comments on commit 1d8a137

Please sign in to comment.