Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 committed Jan 29, 2024
1 parent febcedd commit 7403461
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion hub_utils/meltano_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,16 @@ def _split_sentence_endings(word_list):
continue
if not any(
keyword in word
for keyword in ("http", "ssh", "ssl", "e.g.", '"', "`", "()", ".com")
for keyword in (
"http",
"ssh",
"ssl",
"e.g.",
'"',
"`",
"()",
".com",
)
):
desc_list_clean.extend(word.replace(".", ". ").split())
continue
Expand Down

0 comments on commit 7403461

Please sign in to comment.