summaryrefslogtreecommitdiff
path: root/bs4/element.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2023-03-27 16:01:43 -0400
committerLeonard Richardson <leonardr@segfault.org>2023-03-27 16:01:43 -0400
commitc63a26a693c14234592b0f92da184a40aa9a2c6b (patch)
tree18ac38b27c480a6ff40b0cff95025ada913efe1e /bs4/element.py
parent469bd30fd1d981ea3e2af0d0827956532b41b277 (diff)
Make it possible to pickle a deeply nested BeautifulSoup object.
Diffstat (limited to 'bs4/element.py')
-rw-r--r--bs4/element.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/element.py b/bs4/element.py
index 42b4a51..9c73957 100644
--- a/bs4/element.py
+++ b/bs4/element.py
@@ -911,7 +911,7 @@ class PageElement(object):
:rtype: bool
"""
return getattr(self, '_decomposed', False) or False
-
+
# Old non-property versions of the generators, for backwards
# compatibility with BS3.
def nextGenerator(self):