diff options
author | Christian Heimes <christian@python.org> | 2021-01-12 15:54:00 +0100 |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2021-01-12 17:44:22 +0100 |
commit | 5a928e5f90b58b96a90180bc3c81e293af387ff8 (patch) | |
tree | d55d6805dc8e013b3f641b915063c34873a16649 /defusedxml/lxml.py | |
parent | e1ef14e7dc763fe356f0b6142be23972e4a2310b (diff) | |
download | defusedxml-git-5a928e5f90b58b96a90180bc3c81e293af387ff8.tar.gz |
Reformat doc strings with latest black
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'defusedxml/lxml.py')
-rw-r--r-- | defusedxml/lxml.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/defusedxml/lxml.py b/defusedxml/lxml.py index 1320ca5..ec22e0c 100644 --- a/defusedxml/lxml.py +++ b/defusedxml/lxml.py @@ -31,8 +31,7 @@ warnings.warn( class RestrictedElement(_etree.ElementBase): - """A restricted Element class that filters out instances of some classes - """ + """A restricted Element class that filters out instances of some classes""" __slots__ = () # blacklist = (etree._Entity, etree._ProcessingInstruction, etree._Comment) @@ -75,8 +74,7 @@ class RestrictedElement(_etree.ElementBase): class GlobalParserTLS(threading.local): - """Thread local context for custom parser instances - """ + """Thread local context for custom parser instances""" parser_config = { "resolve_entities": False, |