Skip to content

Commit cc92650

Browse files
authored
Remove assignment of plot w/ a None return
1 parent 765882d commit cc92650

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/big_cloud_scratch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def plot_commits(commits):
3434
commits = query_ght(commitQuery)
3535
getData = time.time()
3636
print("Query Time:\t" + str(getData - start))
37-
branchPlot = plot_commits(commits)
37+
plot_commits(commits)
3838
plotTime = time.time()
3939
print("Plot Time:\t" + str(plotTime - getData))
4040
plt.savefig("./imgs/branch_test")

0 commit comments

Comments
 (0)