Loco-CTO / Rystal-V6-Experiments

Missing class docstring PY-D0002
Documentation
Minor
9 days ago2 months old
Docstring missing for class PointSystem
 44class_namespace = "point_class_title"
 45
 46
 47class PointSystem(commands.Cog): 48    def __init__(self, bot):
 49        self.bot = bot
 50
Docstring missing for class PermissionSystem
 34class_namespace = "permission_class_title"
 35
 36
 37class PermissionSystem(commands.Cog): 38    def __init__(self, bot):
 39        self.bot = bot
 40
Docstring missing for class NoteSystem
 38class_namespace = "note_class_title"
 39
 40
 41class NoteSystem(commands.Cog): 42    def __init__(self, bot):
 43        self.bot = bot
 44
Docstring missing for class ShopSystem
32class_namespace = "shop_class_title"
33
34
35class ShopSystem(commands.Cog):36    def __init__(self, bot):
37        self.bot = bot
38
Docstring missing for class Music
  62class_namespace = "music_class_title"
  63
  64
  65class Music(commands.Cog, EventManager):  66    def __init__(self, bot):
  67        self.bot = bot
  68        self.now_playing_menus = []