mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 21:03:21 -07:00
Revert "Remove importlib-metadata and importlib-resources"
This reverts commit 38435ae81c
.
This commit is contained in:
parent
fa510792f1
commit
1b26775ec6
53 changed files with 3678 additions and 0 deletions
17
lib/importlib_resources/__init__.py
Normal file
17
lib/importlib_resources/__init__.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
"""Read resources contained within a package."""
|
||||
|
||||
from ._common import (
|
||||
as_file,
|
||||
files,
|
||||
Package,
|
||||
)
|
||||
|
||||
from .abc import ResourceReader
|
||||
|
||||
|
||||
__all__ = [
|
||||
'Package',
|
||||
'ResourceReader',
|
||||
'as_file',
|
||||
'files',
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue