Skip to content

Commit

Permalink
Fix - Syntax not understood by pycharm
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Dec 18, 2018
1 parent 7b9c2b0 commit de11d8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pylint/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@ 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.
>>> _splitstrip('a, b, c , 4,,')
_splitstrip('a, b, c , 4,,')
['a', 'b', 'c', '4']
>>> _splitstrip('a')
_splitstrip('a')
['a']
>>> _splitstrip('a,\nb,\nc,')
_splitstrip('a,\nb,\nc,')
['a', 'b', 'c']
:type string: str or unicode
Expand Down

0 comments on commit de11d8a

Please sign in to comment.