File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ def parse_commits(
144
144
try :
145
145
commitParents = list (commit .parents )
146
146
except AttributeError :
147
- if (( len (self .drawnCommits ) + self .n_dark_commits ) < self .n_default ) :
147
+ if (len (self .drawnCommits ) + self .n_dark_commits ) < self .n_default :
148
148
self .n_dark_commits += 1
149
149
self .parse_commits (self .create_dark_commit (), i , circle )
150
150
return
@@ -159,7 +159,7 @@ def parse_commits(
159
159
for p in range (len (commitParents )):
160
160
self .parse_commits (commitParents [p ], i , circle )
161
161
else :
162
- if (( len (self .drawnCommits ) + self .n_dark_commits ) < self .n_default ) :
162
+ if (len (self .drawnCommits ) + self .n_dark_commits ) < self .n_default :
163
163
self .n_dark_commits += 1
164
164
self .parse_commits (self .create_dark_commit (), i , circle )
165
165
You can’t perform that action at this time.
0 commit comments