Loco-CTO / Rystal-V6-Experiments

Undefined name detected PYL-E0602
Bug risk
Critical
2 occurrences in this check
Undefined variable 'RouletteResult'
192        result = RoutetteView.handle_bet_result(
193            Roulette.check_winner(option[0].lower())
194        )
195        if result == RouletteResult.LOSE:196            outcome = "Lose"
197        else:
198            outcome = "Win"
Undefined variable 'RoutetteView'
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        )
195        if result == RouletteResult.LOSE: