summaryrefslogtreecommitdiff
path: root/pylint/utils/utils.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-03-13 13:15:46 +0100
committerGitHub <noreply@github.com>2022-03-13 13:15:46 +0100
commit663a2be7abd407fc680f426155ba26becaaa278d (patch)
treefe0b64a75fe24093b6f26018d82e5b5477a13d3c /pylint/utils/utils.py
parent7981ec021b84c6f2b216202c1c028da4b0ee995b (diff)
downloadpylint-git-663a2be7abd407fc680f426155ba26becaaa278d.tar.gz
Upgrade ``pydocstringformatter`` to ``0.5.0`` (#5910)
Diffstat (limited to 'pylint/utils/utils.py')
-rw-r--r--pylint/utils/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/utils/utils.py b/pylint/utils/utils.py
index c3d120458..14f57a16c 100644
--- a/pylint/utils/utils.py
+++ b/pylint/utils/utils.py
@@ -277,7 +277,7 @@ def get_global_option(
def _splitstrip(string, sep=","):
"""Return a list of stripped string by splitting the string given as
- argument on `sep` (',' by default). Empty string are discarded.
+ argument on `sep` (',' by default), empty strings are discarded.
>>> _splitstrip('a, b, c , 4,,')
['a', 'b', 'c', '4']