(self, lenght)
| 54 | print(cls.has_characters) # print the output |
| 55 | |
| 56 | def generate_password(self, lenght): |
| 57 | sequence = PasswordGenerator.gen_sequence(list(self.has_characters.values())) |
| 58 | print(PasswordGenerator.gen_password(sequence, lenght)) |
| 59 | |
| 60 | |
| 61 | def list_to_vertical_string(list): |
no test coverage detected