From c246dcef6f4377a4b89be385a351f3f8a6410a68 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 5 Oct 2022 14:26:55 -0400 Subject: [PATCH] Drop uuid from notify func inputs --- piker/ui/order_mode.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/piker/ui/order_mode.py b/piker/ui/order_mode.py index 1cabeb10..b049aa7c 100644 --- a/piker/ui/order_mode.py +++ b/piker/ui/order_mode.py @@ -1031,10 +1031,7 @@ async def process_trade_msg( ) mode.lines.remove_line(uuid=oid) msg.req = req - await notify_from_ems_status_msg( - uuid, - msg, - ) + await notify_from_ems_status_msg(msg) # response to completed 'dialog' for order request case Status( @@ -1043,10 +1040,7 @@ async def process_trade_msg( req=req, ): msg.req = Order(**req) - await notify_from_ems_status_msg( - uuid, - msg, - ) + await notify_from_ems_status_msg(msg) mode.lines.remove_line(uuid=oid) # each clearing tick is responded individually