generate_hash.py
from streamlit_authenticator.utilities.hasher import Hasher
1) Provide the plaintext passwords in a list
plaintext_passwords = [“mysecretpass”]
2) Generate the hashed passwords
hashed_passwords = Hasher(plaintext_passwords).generate()
3) Print them out
print(hashed_passwords)
why is this error popping up?