File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ def parse_commits(
144144 try :
145145 commitParents = list (commit .parents )
146146 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 :
148148 self .n_dark_commits += 1
149149 self .parse_commits (self .create_dark_commit (), i , circle )
150150 return
@@ -159,7 +159,7 @@ def parse_commits(
159159 for p in range (len (commitParents )):
160160 self .parse_commits (commitParents [p ], i , circle )
161161 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 :
163163 self .n_dark_commits += 1
164164 self .parse_commits (self .create_dark_commit (), i , circle )
165165
You can’t perform that action at this time.
0 commit comments