From 21821bd7899218308467c9a907f013e860ea409a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= <16805946+edgarrmondragon@users.noreply.github.com> Date: Tue, 6 Aug 2024 19:29:23 -0600 Subject: [PATCH] fix: Fixed typos in `--about` plain text output (#2592) --- singer_sdk/about.py | 4 ++-- tests/snapshots/about_format/text.snap.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/singer_sdk/about.py b/singer_sdk/about.py index d1228b43c..ab3062295 100644 --- a/singer_sdk/about.py +++ b/singer_sdk/about.py @@ -128,12 +128,12 @@ def format_about(self, about_info: AboutInfo) -> str: # noqa: PLR6301 ) if about_info.supported_python_versions: - output += "\nSupport Python Versions:\n" + output += "\nSupported Python Versions:\n" output += "\n".join( [f" - {v}" for v in about_info.supported_python_versions] ) - output += "\nSupport Python Versions:\n" + output += "\nCapabilities:\n" output += "\n".join([f" - {c}" for c in about_info.capabilities]) output += "\nSettings:\n" diff --git a/tests/snapshots/about_format/text.snap.txt b/tests/snapshots/about_format/text.snap.txt index 028f0541b..fb0872e85 100644 --- a/tests/snapshots/about_format/text.snap.txt +++ b/tests/snapshots/about_format/text.snap.txt @@ -2,14 +2,14 @@ Name: tap-example Description: Example tap for Singer SDK Version: 0.1.1 SDK Version: 1.0.0 -Support Python Versions: +Supported Python Versions: - 3.8 - 3.9 - 3.10 - 3.11 - 3.12 - 3.13 -Support Python Versions: +Capabilities: - catalog - discover - state