added podman, json and yaml
This commit is contained in:
22
venv/lib/python3.11/site-packages/mkdocs/commands/setup.py
Normal file
22
venv/lib/python3.11/site-packages/mkdocs/commands/setup.py
Normal file
@ -0,0 +1,22 @@
|
||||
import warnings
|
||||
|
||||
warnings.warn(
|
||||
"mkdocs.commands.setup is never used in MkDocs and will be removed soon.", DeprecationWarning
|
||||
)
|
||||
|
||||
try:
|
||||
from mkdocs.commands.babel import (
|
||||
compile_catalog,
|
||||
extract_messages,
|
||||
init_catalog,
|
||||
update_catalog,
|
||||
)
|
||||
|
||||
babel_cmdclass = {
|
||||
'compile_catalog': compile_catalog,
|
||||
'extract_messages': extract_messages,
|
||||
'init_catalog': init_catalog,
|
||||
'update_catalog': update_catalog,
|
||||
}
|
||||
except ImportError:
|
||||
babel_cmdclass = {}
|
||||
Reference in New Issue
Block a user