Skip to content

Commit

Permalink
Add more limits
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdon committed Jun 24, 2021
1 parent 53bad06 commit bffb7ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sleuth/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def to_json(self):
"message": self.message,
"author": self.author.to_json(),
"date": self.date.isoformat(),
"files": list(self.files),
"parents": list(self.parents),
"files": list(self.files)[:200],
"parents": list(self.parents)[:200],
"url": self.url,
}

Expand Down

0 comments on commit bffb7ad

Please sign in to comment.