Skip to content

Commit

Permalink
Add missing doc-string to new function
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Adams authored and Jake Adams committed Mar 5, 2025
1 parent 7047248 commit 4f1f388
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions issue_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ def get_per_issue_metrics(


def evaluate_markdown_file_size(output_file: str) -> None:
"""
Evaluate the size of the markdown file and split it, if it is too large.
"""
file_name_without_extension = Path(output_file).stem
max_char_count = 65535
if markdown_too_large_for_issue_body(output_file, max_char_count):
Expand Down

0 comments on commit 4f1f388

Please sign in to comment.