Spaces:
Running
Running
Claude commited on
Fix lint — retirer FactType non utilisé dans renderer.py
Browse filesCI ruff signalait F401 sur l'import `FactType` dans
`picarones/core/narrative/renderer.py` — introduit lors du Sprint 4 mais
jamais utilisé (le renderer manipule le type via `fact.type.value`, il
n'a pas besoin de la classe enum elle-même).
https://claude.ai/code/session_0162FdNNJyNvBuYzkgtsr9VB
picarones/core/narrative/renderer.py
CHANGED
|
@@ -15,7 +15,7 @@ from typing import Iterable
|
|
| 15 |
|
| 16 |
import yaml
|
| 17 |
|
| 18 |
-
from picarones.core.narrative.facts import Fact
|
| 19 |
|
| 20 |
logger = logging.getLogger(__name__)
|
| 21 |
|
|
|
|
| 15 |
|
| 16 |
import yaml
|
| 17 |
|
| 18 |
+
from picarones.core.narrative.facts import Fact
|
| 19 |
|
| 20 |
logger = logging.getLogger(__name__)
|
| 21 |
|