i import a wrong file using the command: firebase auth: import FILE.csv
which it generate in some out of format uid. I am trying to clean all logs using the firestore and python SDK but I am getting the following error:
ValueError" Invalid uid: \ "1003, sdfsdfsdfdf @ hotmail.com ,, $ 2y $ 13 $ LFNvaEjSHO33kpTwql2imudfgsdgsdgdfgdfg56J22.QacwwNiYS, 80fjzj456sdfgdfsgsdfgsdfgdsfg0ok8o8, asdasd". The uid must be a non-empty string with no more than 128 characters. "
uids are literally as the error output shows
This is my code:
for user in auth.list_users().iterate_all():
user_id = user.uid
print('User: ', user_id)
auth.delete_user(user_id)
deleting the entire project is not a solution for me