nshout

Results 2 issues of nshout

```python class Logs(Widget): mouse_over = Reactive(False) def render(self) -> Panel: return Panel(Align.left("Test", style="white")) def on_enter(self) -> None: self.mouse_over = True def on_leave(self) -> None: self.mouse_over = False class MyApp(App): async...

## Summary Discord.py-self uses the "audioop" module which is removed in Python 3.13 and has been deprecated since 3.11. This fix is achieved by adding the "audioop-lts" package in requirements.txt...