Remove unused User class

This commit is contained in:
trueold89 2024-06-04 18:53:02 +03:00
parent 51d7b8e505
commit 9106386211
Signed by: trueold89
GPG Key ID: C122E85DD49E6B30
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
# -*- coding: utf-8 -*-
###################
# Actions on user #
###################
class User(object):
"""
Describes Discord user
Attributes:
- user (int): Discord id
"""
def __init__(self, user_id: int) -> None:
"""
Init Discord user object
:param user_id: user discord id
"""
self.user = user_id
def move_to(self, channel_id: int) -> None: # ToDo
"""
Moves the user to the specified voice channel
:param channel_id: discord id of voice channel
"""
pass