mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 13:41:15 -07:00
* Bump importlib-resources from 5.12.0 to 6.0.1 Bumps [importlib-resources](https://github.com/python/importlib_resources) from 5.12.0 to 6.0.1. - [Release notes](https://github.com/python/importlib_resources/releases) - [Changelog](https://github.com/python/importlib_resources/blob/main/NEWS.rst) - [Commits](https://github.com/python/importlib_resources/compare/v5.12.0...v6.0.1) --- updated-dependencies: - dependency-name: importlib-resources dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update importlib-resources==6.0.1 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
17 lines
226 B
Python
17 lines
226 B
Python
"""Read resources contained within a package."""
|
|
|
|
from ._common import (
|
|
as_file,
|
|
files,
|
|
Package,
|
|
)
|
|
|
|
from .abc import ResourceReader
|
|
|
|
|
|
__all__ = [
|
|
'Package',
|
|
'ResourceReader',
|
|
'as_file',
|
|
'files',
|
|
]
|