File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ from src .infrastructure import file_utils
2+
3+ def make_adjustments ():
4+ pass
5+
6+ # REMOVE THIS CALL
7+ make_adjustments ()
Original file line number Diff line number Diff line change 22import matplotlib .pyplot as plt
33import numpy as np
44from src .infrastructure import file_utils
5+ from src .analysis .adjustments import make_adjustments
56
67def _save_plot (plot : plt , name : str ):
78 file_path = os .path .join (file_utils .CHARTS_PATH , f"{ name } .jpg" )
@@ -359,6 +360,7 @@ def _create_tdd_repo_categories_pie():
359360
360361
361362def create_plots ():
363+ make_adjustments ()
362364 _create_size_impact_scatter ()
363365 _create_tdd_usage_box_plot ()
364366 _create_avg_commit_size_bar_graph ()
@@ -368,6 +370,7 @@ def create_plots():
368370 _create_tdd_author_categories_pie ()
369371 _create_tdd_repo_categories_pie ()
370372
373+ # REMOVE THIS FUNCTION CALL
371374create_plots ()
372375
373376'''
You can’t perform that action at this time.
0 commit comments