We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c25c73 commit ecf6c1cCopy full SHA for ecf6c1c
autointent/generation/utterances/evolution/cli.py
@@ -10,7 +10,6 @@
10
from .chat_templates import (
11
AbstractEvolution,
12
ConcreteEvolution,
13
- EvolutionChatTemplate,
14
FormalEvolution,
15
FunnyEvolution,
16
GoofyEvolution,
@@ -73,7 +72,7 @@ def main() -> None:
73
72
"informal": InformalEvolution,
74
}
75
args = _parse_args()
76
- evolutions: list[EvolutionChatTemplate] = []
+ evolutions = []
77
78
for arg_name, evolution_cls in mapping.items():
79
if getattr(args, arg_name):
0 commit comments