mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Remove use of six.u
This commit is contained in:
parent
42d52d6a91
commit
6ada18b9a8
@ -16,7 +16,7 @@ import re
|
||||
from collections.abc import Callable
|
||||
from functools import partial
|
||||
|
||||
from six import string_types, u
|
||||
from six import string_types
|
||||
|
||||
from sphinx.ext.napoleon.iterators import modify_iter
|
||||
from sphinx.locale import _
|
||||
@ -189,7 +189,7 @@ class GoogleDocstring(UnicodeMixin):
|
||||
Unicode version of the docstring.
|
||||
|
||||
"""
|
||||
return u('\n').join(self.lines())
|
||||
return '\n'.join(self.lines())
|
||||
|
||||
def lines(self):
|
||||
# type: () -> List[unicode]
|
||||
|
Loading…
Reference in New Issue
Block a user