Skip to content

Commit 0aa56b0

Browse files
committed
Fix pydocstyle
1 parent 6f631f0 commit 0aa56b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

reportportal_client/helpers/common_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ def caseless_equal(left: str, right: str) -> bool:
587587

588588

589589
def clean_binary_characters(text: str) -> str:
590-
"""The function cleans a string from binary characters, replaces them with a question mark inside a diamond."""
590+
"""Cleans a string from binary characters, replaces them with a question mark inside a diamond."""
591591
if not text:
592592
return ""
593593
return text.translate(CLEANUP_TABLE)

0 commit comments

Comments
 (0)