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]):
135135 Can only be used when the indent is ``'\\ t'`` or ``'␣'``.
136136 """
137137
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+
139144 if isinstance (iterable , str ):
140145 iterable = iterable .split ('\n ' )
141146
Original file line number Diff line number Diff line change 4646# this package
4747import domdf_python_tools
4848from domdf_python_tools .compat import importlib_resources
49+ from domdf_python_tools .doctools import prettify_docstrings
4950
5051__all__ = [
5152 "greek_uppercase" ,
7475 "Plural" ,
7576 ]
7677
77- # this package
78- from domdf_python_tools .doctools import prettify_docstrings
79-
8078ascii_digits = "0123456789"
8179"""
8280ASCII numbers.
You can’t perform that action at this time.
0 commit comments