Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for MethodsDependency (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tests/test_dependency_class.py

        async def __call__(self, value: str) -> str:
            return value
    
    
    class AsyncCallableGenDependency:
        async def __call__(self, value: str) -> AsyncGenerator[str, None]:
            yield value
    
    
    class MethodsDependency:
        def synchronous(self, value: str) -> str:
            return value
    
        async def asynchronous(self, value: str) -> str:
            return value
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 4.4K bytes
    - Click Count (0)
Back to Top