Skip to content

Commit

Permalink
newlines.
Browse files Browse the repository at this point in the history
  • Loading branch information
julialawrence committed Nov 2, 2023
1 parent 1e0437a commit e16a572
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cfr.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
logger.info(f"Total Workflow Runs: {total_workflow_runs}")
logger.info(f"Total Unsuccessful Runs: {total_unsuccessful_runs}")
logger.info(f"Change Failure Rate for {filename}: {failure_rate:.2f}%")
logger.info("\n---------------------------")
logger.info("\n---------------------------\n")

print(f"Total Workflow Runs: {total_workflow_runs}")
print(f"Total Unsuccessful Runs: {total_unsuccessful_runs}")
Expand Down
2 changes: 1 addition & 1 deletion df.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
if deployment_frequency is not None:
print(f"\033[1m\033[32mDaily deployment frequency for {filename}: {deployment_frequency:.2f} deployments/day\033[0m")
logger.info(f"Daily deployment frequency for {filename}: {deployment_frequency:.2f} deployments/day")
logger.info("\n---------------------------")
logger.info("\n---------------------------\n")
else:
print(f"\033[1m\033[32m{filename} does not use github actions for deployments\033[0m")
logger.info(f"{filename} does not use github actions for deployments")
2 changes: 1 addition & 1 deletion ltfc.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
f"{(mean_lead_time.seconds % 3600) // 60}"
)
logger.info(message)
logger.info("\n---------------------------")
logger.info("\n---------------------------\n")

else:
print("No merged pull requests found.")
Expand Down
2 changes: 1 addition & 1 deletion mttr.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
minutes = (seconds % 3600) // 60
print(f"\033[32m\033[1mMean time to recovery for {filename}: {days} days, {hours} hours, {minutes} minutes\033[0m")
logger.info(f"Mean time to recovery for {filename}: {days} days, {hours} hours, {minutes} minutes")
logger.info("\n---------------------------")
logger.info("\n---------------------------\n")
else:
print("No unsuccessful workflow runs found in the last 90 days.")
logger.info("No unsuccessful workflow runs found in the last 90 days.")

0 comments on commit e16a572

Please sign in to comment.