mirror of
				https://github.com/microsoft/autogen.git
				synced 2025-11-04 11:49:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			413 B
		
	
	
	
		
			Python
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			413 B
		
	
	
	
		
			Python
		
	
	
	
	
		
			Generated
		
	
	
"""
 | 
						|
@generated by mypy-protobuf.  Do not edit manually!
 | 
						|
isort:skip_file
 | 
						|
"""
 | 
						|
 | 
						|
import abc
 | 
						|
import collections.abc
 | 
						|
import grpc
 | 
						|
import grpc.aio
 | 
						|
import typing
 | 
						|
 | 
						|
_T = typing.TypeVar("_T")
 | 
						|
 | 
						|
class _MaybeAsyncIterator(collections.abc.AsyncIterator[_T], collections.abc.Iterator[_T], metaclass=abc.ABCMeta): ...
 | 
						|
 | 
						|
class _ServicerContext(grpc.ServicerContext, grpc.aio.ServicerContext):  # type: ignore[misc, type-arg]
 | 
						|
    ...
 |