Skip to content

Commit

Permalink
fix: pass verbose down
Browse files Browse the repository at this point in the history
  • Loading branch information
nsantacruz committed May 26, 2024
1 parent 8dcdf84 commit d98ffbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/util/topic.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_or_generate_topic_description(topic: Topic, verbose=True) -> str:
if description and verbose:
print('Generated desc from webpage:', description)
if not description:
description = get_topic_description_from_top_sources(topic)
description = get_topic_description_from_top_sources(topic, verbose=verbose)
if description and verbose:
print('Generated desc from sources:', description)
return description
Expand Down

0 comments on commit d98ffbc

Please sign in to comment.