Skip to content

Commit ecf6c1c

Browse files
committed
fix: mypy
1 parent 9c25c73 commit ecf6c1c

File tree

1 file changed

+1
-2
lines changed
  • autointent/generation/utterances/evolution

1 file changed

+1
-2
lines changed

autointent/generation/utterances/evolution/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
from .chat_templates import (
1111
AbstractEvolution,
1212
ConcreteEvolution,
13-
EvolutionChatTemplate,
1413
FormalEvolution,
1514
FunnyEvolution,
1615
GoofyEvolution,
@@ -73,7 +72,7 @@ def main() -> None:
7372
"informal": InformalEvolution,
7473
}
7574
args = _parse_args()
76-
evolutions: list[EvolutionChatTemplate] = []
75+
evolutions = []
7776

7877
for arg_name, evolution_cls in mapping.items():
7978
if getattr(args, arg_name):

0 commit comments

Comments
 (0)