7 lines
180 B
Python
Executable File
7 lines
180 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Backward compatible wrapper. Use tools/policy_checks.py."""
|
|
from tools.policy_checks import main
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|