From 9370dda17d2f05839272613ae239f2b4104f3e30 Mon Sep 17 00:00:00 2001 From: Denis Averin <59285247+Denis-Averin@users.noreply.github.com> Date: Thu, 16 Apr 2026 13:49:45 +0700 Subject: [PATCH] Trim trailing empty line from README.md --- README.md | 1 - scripts/insert-example.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 335e32f..a6d2a12 100644 --- a/README.md +++ b/README.md @@ -139,4 +139,3 @@ Class | Method | HTTP request | Description - [RecognizeBase64Request](docs/Model/RecognizeBase64Request.md) - [RegionPoint](docs/Model/RegionPoint.md) - [ScanBase64Request](docs/Model/ScanBase64Request.md) - diff --git a/scripts/insert-example.py b/scripts/insert-example.py index bd83ce9..17c0713 100644 --- a/scripts/insert-example.py +++ b/scripts/insert-example.py @@ -20,7 +20,7 @@ def sub_match(match): return read_text(file_name) text = REPLACE_RE.sub(sub_match, content) - print(text) + print(text, end="") def parse_args() -> typing.Dict[str, typing.Any]: