Loco-CTO / Rystal-V6-Experiments

Missing module/function docstring PY-D0003
Documentation
Minor
3 occurrences in this check
Docstring missing for start
204            outcome,
205        )
206
207    async def start(self, interaction: nextcord.Interaction):208        self.author = interaction.user
209        self.channel = interaction.channel
210        self.interaction = interaction
Docstring missing for on_selected
188    async def interaction_check(self, interaction: nextcord.Interaction) -> bool:
189        return interaction.user == self.author
190
191    async def on_selected(self, _, bet, option):192        result = RoutetteView.handle_bet_result(
193            Roulette.check_winner(option[0].lower())
194        )
Docstring missing for interaction_check
185        self.options = options
186        self.placeholder = placeholder
187
188    async def interaction_check(self, interaction: nextcord.Interaction) -> bool:189        return interaction.user == self.author
190
191    async def on_selected(self, _, bet, option):