from single_process import single_process

@single_process
def main():
    print 1

if __name__ == "__main__":
    main()

