Skip to content

Commit

Permalink
fix: Fixed typos in --about plain text output (#2592)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Aug 7, 2024
1 parent 87d78b3 commit 21821bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions singer_sdk/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions tests/snapshots/about_format/text.snap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 21821bd

Please sign in to comment.