From 5dd2f56eab415afe46e130bbe8da94908281b613 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 12 Dec 2020 12:19:04 +0000 Subject: [PATCH] Remove the book emoji, seems a little distracting --- bin/projects.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/projects.py b/bin/projects.py index 965c74bb..87397057 100755 --- a/bin/projects.py +++ b/bin/projects.py @@ -56,8 +56,8 @@ class Project: self.pushed_at = repo.pushed_at if not self.notes: notes = repo.description - if notes: - self.notes = f":closed_book: {notes}" + if repo.description: + self.notes = notes else: self.num_stars = 0 self.pushed_at = datetime.utcnow()