Skip to content

Commit 9a6b274

Browse files
Created function to make adjustments in
1 parent 7d0b1e6 commit 9a6b274

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/analysis/adjustments.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from src.infrastructure import file_utils
2+
3+
def make_adjustments():
4+
pass
5+
6+
# REMOVE THIS CALL
7+
make_adjustments()

src/analysis/analysis.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import matplotlib.pyplot as plt
33
import numpy as np
44
from src.infrastructure import file_utils
5+
from src.analysis.adjustments import make_adjustments
56

67
def _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

361362
def 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
371374
create_plots()
372375

373376
'''

0 commit comments

Comments
 (0)