optional_deps.py 426 B

123456789101112
  1. # These checks have to come first because aiohttp looks
  2. # for opencensus, too, and raises a different error otherwise.
  3. import opencensus # noqa: F401
  4. import prometheus_client # noqa: F401
  5. import aiohttp # noqa: F401
  6. import aiohttp.web # noqa: F401
  7. import aiohttp_cors # noqa: F401
  8. from aiohttp import hdrs # noqa: F401
  9. from aiohttp.typedefs import PathLike # noqa: F401
  10. from aiohttp.web import RouteDef # noqa: F401