@@ -0,0 +1,7 @@
def load_users(path):
with open(path, 'r', encoding='utf-8') as f:
users = f.read()
users = users.split('\n')
users = [u.strip() for u in users]
users = [u for u in users if u != '']
return users
The note is not visible to the blocked user.