pelican/pelican/__main__.py
Chris Rose 56995316b7
format commit: ran ruff format .
This commit should be added to the `.git-blame-ignore-revs` file before
merging, so that blame will be correct (but don't add it til then in
case its SHA changes)
2023-10-29 09:51:37 -07:00

9 lines
126 B
Python

"""
python -m pelican module entry point to run via python -m
"""
from . import main
if __name__ == "__main__":
main()