i'm very tired

This commit is contained in:
randomuser 2021-07-21 16:41:45 -05:00
parent e1e937a4af
commit c21913f9cd
1 changed files with 10 additions and 0 deletions

10
admin.py Normal file
View File

@ -0,0 +1,10 @@
class Admin:
def __init__(self, nick):
self.nicks = []
self.nicks.append(nick)
def __eq__(self, val):
return val in self.nicks
def append(self, nick):
self.nicks.append(nick)
def remove(self, nick):
self.nicks.remove(nick)