Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for is_coroutine_callable (0.24 seconds)

  1. fastapi/dependencies/models.py

                _impartial(dunder_unwrapped_call)
            ) or inspect.isasyncgenfunction(_unwrapped_call(dunder_unwrapped_call)):
                return True
            return False
    
        @cached_property
        def is_coroutine_callable(self) -> bool:
            if self.call is None:
                return False  # pragma: no cover
            if inspect.isroutine(_impartial(self.call)) and iscoroutinefunction(
                _impartial(self.call)
            ):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:41:21 GMT 2026
    - 7.1K bytes
    - Click Count (0)
Back to Top