1#!/bin/env -S python3 -B 2 3import sys 4 5from libvoters.entry_point import main 6 7if __name__ == "__main__": 8 sys.exit(main()) 9