Skip to content

Commit

Permalink
black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 committed Jul 27, 2023
1 parent 54f55fa commit 70cd39c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hub_utils/meltano_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ def _split_sentence_endings(word_list):
for word in word_list:
if len(word.split(".")) > 1:
if not any(
keyword in word for keyword in ("http", "ssh", "ssl", "e.g.", '"', "`")
keyword in word
for keyword in ("http", "ssh", "ssl", "e.g.", '"', "`")
):
desc_list_clean.extend(word.replace(".", ". ").split())
continue
Expand Down

0 comments on commit 70cd39c

Please sign in to comment.