forked from goodboy/tractor
				
			Merge pull request #253 from overclockworked64/fix-type-annotation
Fix type annotationsgraceful_gather
						commit
						ebf080b8a2
					
				| 
						 | 
					@ -20,8 +20,8 @@ async def open_actor_cluster(
 | 
				
			||||||
    start_method: Optional[str] = None,
 | 
					    start_method: Optional[str] = None,
 | 
				
			||||||
    hard_kill: bool = False,
 | 
					    hard_kill: bool = False,
 | 
				
			||||||
) -> AsyncGenerator[
 | 
					) -> AsyncGenerator[
 | 
				
			||||||
    list[str],
 | 
					    dict[str, tractor.Portal],
 | 
				
			||||||
    dict[str, tractor.Portal]
 | 
					    None,
 | 
				
			||||||
]:
 | 
					]:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    portals: dict[str, tractor.Portal] = {}
 | 
					    portals: dict[str, tractor.Portal] = {}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue