Browse Source

Remove duplicate _extra, _parents and _encoding from slots for Commit.

Jelmer Vernooij 8 years ago
parent
commit
3ce9b807a7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dulwich/objects.py

+ 2 - 2
dulwich/objects.py

@@ -1126,8 +1126,8 @@ class Commit(ShaFile):
     __slots__ = ('_parents', '_encoding', '_extra', '_author_timezone_neg_utc',
                  '_commit_timezone_neg_utc', '_commit_time',
                  '_author_time', '_author_timezone', '_commit_timezone',
-                 '_author', '_committer', '_parents', '_extra',
-                 '_encoding', '_tree', '_message', '_mergetag', '_gpgsig')
+                 '_author', '_committer', '_tree', '_message',
+                 '_mergetag', '_gpgsig')
 
     def __init__(self):
         super(Commit, self).__init__()