File size: 401 Bytes
4949db9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/usr/bin/env python3
"""Disabled supplement script for the anonymous release.
The original supplement flow depends on the prompt-selection JSON, which is not
included in this release.
"""
def main():
raise RuntimeError(
"supplement_laws is not included in this release because it depends on "
"the omitted prompt-selection JSON."
)
if __name__ == "__main__":
main()
|