feat: store lines of a haiku, not just as a str

Refs: OPS-24
This commit is contained in:
Christoph J. Scherr 2025-02-25 18:32:50 +01:00
parent 5fa2122972
commit 82f8c7a721
No known key found for this signature in database
GPG key ID: 9EB784BB202BB7BB
2 changed files with 15 additions and 15 deletions

View file

@ -3,4 +3,4 @@ from dataclasses import dataclass
@dataclass
class Haiku:
text: str
lines: list[str]