cursor.execute(f"SELECT NickName FROM users WHERE ID = {id}")
print(cursor.fetchone().get("NickName"))
nick = str(cursor.fetchone().get("NickName"))
print(cursor.fetchone().get("NickName")) - эта строка выводит в консоль результат
nick = str(cursor.fetchone().get("NickName")) - а эта строка выводит "'NoneType' object has no attribute 'get'"