We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d69063c commit 6c342faCopy full SHA for 6c342fa
1 file changed
git_sim/git_sim_base_command.py
@@ -144,7 +144,7 @@ def parse_commits(
144
try:
145
commitParents = list(commit.parents)
146
except AttributeError:
147
- if ((len(self.drawnCommits) + self.n_dark_commits) < self.n_default):
+ if (len(self.drawnCommits) + self.n_dark_commits) < self.n_default:
148
self.n_dark_commits += 1
149
self.parse_commits(self.create_dark_commit(), i, circle)
150
return
@@ -159,7 +159,7 @@ def parse_commits(
159
for p in range(len(commitParents)):
160
self.parse_commits(commitParents[p], i, circle)
161
else:
162
163
164
165
0 commit comments