in functions/source/aws_qs_create_org/aws_qs_create_org.py [0:0]
3 lines of code
2 McCabe index (conditional complexity)
def generate_password():
password = ''.join(random.choice(string.ascii_letters + string.digits + string.punctuation) for i in range(8))
return password