File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed 
dapr_agents/workflow/orchestrators/llm Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1051,7 +1051,7 @@ async def update_workflow_state(
10511051            not  self .memory_store ._current_state 
10521052            or  "instances"  not  in   self .memory_store ._current_state 
10531053        ):
1054-             raise  ValueError (f "No workflow instances found in local state." )
1054+             raise  ValueError ("No workflow instances found in local state." )
10551055
10561056        workflow_entry  =  self .memory_store ._current_state ["instances" ].get (instance_id )
10571057        if  not  workflow_entry :
@@ -1169,7 +1169,7 @@ async def trigger_agent_internal(
11691169            not  self .memory_store ._current_state 
11701170            or  "instances"  not  in   self .memory_store ._current_state 
11711171        ):
1172-             raise  ValueError (f "No workflow instances found in local state." )
1172+             raise  ValueError ("No workflow instances found in local state." )
11731173
11741174        workflow_entry  =  self .memory_store ._current_state ["instances" ].get (instance_id )
11751175        if  not  workflow_entry :
@@ -1228,7 +1228,7 @@ async def update_task_history_internal(
12281228            not  self .memory_store ._current_state 
12291229            or  "instances"  not  in   self .memory_store ._current_state 
12301230        ):
1231-             raise  ValueError (f "No workflow instances found in local state." )
1231+             raise  ValueError ("No workflow instances found in local state." )
12321232
12331233        workflow_entry  =  self .memory_store ._current_state ["instances" ].get (instance_id )
12341234        if  not  workflow_entry :
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments