File: _helpers.py

package info (click to toggle)
python-aiobotocore 2.13.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 832 kB
  • sloc: python: 10,572; makefile: 71
file content (6 lines) | stat: -rw-r--r-- 206 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
try:
    from contextlib import AsyncExitStack  # noqa: F401 lgtm[py/unused-import]
except ImportError:
    from async_exit_stack import (  # noqa: F401 lgtm[py/unused-import]
        AsyncExitStack,
    )