Skip to content

Commit

Permalink
minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cdolfi authored and JamesKunstle committed Oct 4, 2023
1 parent e6f009a commit d450876
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def cntrib_pr_assignment_graph(repolist, interval, assign_req):
# test if there is data
if df.empty:
logging.warning(f"{VIZ_ID} - NO DATA AVAILABLE")
return nodata_graph
return nodata_graph, False

df = process_data(df, interval, assign_req)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def cntrib_issue_assignment_graph(repolist, interval, assign_req):
# test if there is data
if df.empty:
logging.warning(f"{VIZ_ID} - NO DATA AVAILABLE")
return nodata_graph
return nodata_graph, False

df = process_data(df, interval, assign_req)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def create_contrib_prolificacy_over_time_graph(
# test if there is data
if df.empty:
logging.warning(f"{VIZ_ID} - NO DATA AVAILABLE")
return nodata_graph
return nodata_graph, False

# if the step size is greater than window width raise Alert
if step_size > window_width:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def create_first_time_contributors_graph(repolist):
# test if there is data
if df.empty:
logging.warning("1ST CONTRIBUTIONS - NO DATA AVAILABLE")
return nodata_graph, False
return nodata_graph

# function for all data pre processing
df = process_data(df)
Expand Down

0 comments on commit d450876

Please sign in to comment.