Skip to content

Commit

Permalink
🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Jul 3, 2024
1 parent 6372c5a commit 0c0cdb6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions findmyorder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ async def search(self, message: str) -> bool:
"""
for client in self.clients:
await client.search()
yield await client.search()

async def identify_order(
self,
Expand All @@ -177,7 +177,7 @@ async def identify_order(
"""
for client in self.clients:
await client.identify_order()
yield client.identify_order()

async def replace_instrument(self, order):
"""
Expand All @@ -191,7 +191,7 @@ async def replace_instrument(self, order):
dict
"""
for client in self.clients:
await client.replace_instrument()
yield client.replace_instrument()

async def get_order(
self,
Expand All @@ -209,4 +209,4 @@ async def get_order(
"""
for client in self.clients:
await client.get_order()
yield await client.get_order()

0 comments on commit 0c0cdb6

Please sign in to comment.