2026-02-01 09:31:38 +01:00

8 lines
178 B
Python

"""Module allowing for ``python -m flake8 ...``."""
from __future__ import annotations
from flake8.main.cli import main
if __name__ == "__main__":
raise SystemExit(main())