Timothy Grant

Results 1 issues of Timothy Grant

```python from collections import deque from textual.app import App, ComposeResult from textual.widgets import Sparkline data = deque([1, 2, 2, 1, 1, 4, 3, 1, 1, 8, 8, 2]) class SparklineBasicApp(App[None]):...

bug