Skip to content

Commit e0f2a08

Browse files
Removed useless line, but plots are broken
1 parent e4b959b commit e0f2a08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/analysis/analysis.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ def _create_box_plot():
7171

7272
# Plot the box plots
7373
boxplt = plt.boxplot([before, after, during], patch_artist=True, tick_labels=["Before", "After", "During"], flierprops= dict(markerfacecolor='coral'))
74-
boxplt = plt.boxplot([before, after, during], patch_artist=True, tick_labels=["Before", "After", "During"], flierprops= dict(markerfacecolor='coral'))
7574

7675
colors = ['palegreen', 'lightblue', 'lightskyblue']
7776
for patch, color in zip(boxplt['boxes'], colors):
@@ -159,3 +158,5 @@ def create_plots():
159158
_create_box_plot()
160159
_create_avg_commit_size_plot()
161160
_create_pie_plot()
161+
162+
create_plots()

0 commit comments

Comments
 (0)