Skip to content

Commit

Permalink
minor tweaks to output
Browse files Browse the repository at this point in the history
  • Loading branch information
geekygirldawn committed Sep 12, 2023
1 parent fb8a0d8 commit 98c80c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion health_by_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
# In general, this model isn't intended to be used with forked
# or archived repos.
is_forked, is_archived = fork_archive(repo_name, org_name, engine)
print('\n', org_name, repo_name, '- Forked:', str(is_forked), 'Archived:', str(is_archived))
print(org_name, repo_name, '- Forked:', str(is_forked), 'Archived:', str(is_archived))

# This section collects all of the data using the functions for each graph
# found in common_functions.py and creates the graphs for each metric
Expand All @@ -130,3 +130,5 @@

response_time_graph(repo_id, repo_name, org_name, start_date, end_date, engine, bus_days, years)

# Print a separator between repos
print('-------------')

0 comments on commit 98c80c9

Please sign in to comment.