Skip to content

Commit

Permalink
Version 3.21rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
mborsetti committed Apr 14, 2024
1 parent 3647ccf commit 3abe7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webchanges/differs.py
Expand Up @@ -1175,7 +1175,7 @@ def _send_to_model(model_prompt: str) -> str:
subdirectives_text = ', '.join(f'{key}={value}' for key, value in directives.items())
footer = f'Summary generated by Google Generative AI (differ directives: {subdirectives_text})'
temp_unfiltered_diff: dict[Literal['text', 'markdown', 'html'], str] = {}
for rep_kind in {'text', 'html'}: # markdown is same as text
for rep_kind in ['text', 'html']: # markdown is same as text
unified_report = DifferBase.process(
'unified',
directives.get('unified') or {}, # type: ignore[arg-type]
Expand Down

0 comments on commit 3abe7b6

Please sign in to comment.