File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,12 @@ class StringList(List[str]):
135
135
Can only be used when the indent is ``'\\ t'`` or ``'␣'``.
136
136
"""
137
137
138
- def __init__ (self , iterable : Iterable [String ] = (), convert_indents : bool = False ) -> None :
138
+ def __init__ (
139
+ self ,
140
+ iterable : Iterable [String ] = (),
141
+ convert_indents : bool = False ,
142
+ ) -> None :
143
+
139
144
if isinstance (iterable , str ):
140
145
iterable = iterable .split ('\n ' )
141
146
Original file line number Diff line number Diff line change 46
46
# this package
47
47
import domdf_python_tools
48
48
from domdf_python_tools .compat import importlib_resources
49
+ from domdf_python_tools .doctools import prettify_docstrings
49
50
50
51
__all__ = [
51
52
"greek_uppercase" ,
74
75
"Plural" ,
75
76
]
76
77
77
- # this package
78
- from domdf_python_tools .doctools import prettify_docstrings
79
-
80
78
ascii_digits = "0123456789"
81
79
"""
82
80
ASCII numbers.
You can’t perform that action at this time.
0 commit comments