Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def main():
parser = argparse.ArgumentParser()
parser.add_argument("-c", "--config", help='path to the config file')
args = parser.parse_args()
cs = Cryptostore(config=args.config)
try:
cs.run()
except KeyboardInterrupt:
pass