Здравствуйте выдает ошибку TypeError: 'NoneType' object is not subscriptable
не могу понять почему выдает ошибку
return glob.db.fetch("SELECT username FROM users WHERE id = 1", [userID])["username"] TypeError: 'NoneType' object is not subscriptable
def getUsername(userID):
"""
Get userID's username
userID -- userID
return -- username
"""
return glob.db.fetch("SELECT username FROM users WHERE id = 1", [userID])["username"]