Remove the book emoji, seems a little distracting

This commit is contained in:
Joe Rickerby
2020-12-12 12:19:04 +00:00
parent 78b6f86305
commit 5dd2f56eab
+2 -2
View File
@@ -56,8 +56,8 @@ class Project:
self.pushed_at = repo.pushed_at self.pushed_at = repo.pushed_at
if not self.notes: if not self.notes:
notes = repo.description notes = repo.description
if notes: if repo.description:
self.notes = f":closed_book: {notes}" self.notes = notes
else: else:
self.num_stars = 0 self.num_stars = 0
self.pushed_at = datetime.utcnow() self.pushed_at = datetime.utcnow()