Skip to content

Commit e93087e

Browse files
author
Panos
committed
keep full description
1 parent a0339d1 commit e93087e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

github_trending/display.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,7 @@ def _print_repository_summary(self, index: int, repo: Dict[str, str]):
113113
stars_formatted = self._format_number(stars)
114114
stars_today_formatted = self._format_number(stars_today)
115115

116-
# Truncate description if too long
117-
max_desc_length = self.terminal_width - 25
118-
if len(description) > max_desc_length:
119-
description = description[:max_desc_length-3] + "..."
116+
# Keep full description without truncation
120117

121118
# Stars display with trending indicator
122119
stars_today_num = int(stars_today.replace(',', '') or '0')

0 commit comments

Comments
 (0)