| #!/usr/bin/env python3 | |
| """Run direct latent-profile reference-style candidate selection.""" | |
| from __future__ import annotations | |
| import sys | |
| from music3lab.__main__ import main | |
| if __name__ == "__main__": | |
| raise SystemExit(main(["reference-style", *sys.argv[1:]])) | |