Skip to content

Commit a978447

Browse files
committed
rss_feeds.py: data() docstring
Attempt to explain why we override this function. I...actually don't understand why we do, so this explanation may be wrong. It seems like we could have fit within the BaseDocketReport framework of returning our information as `docket_entries` rather than `data` but maybe I'm missing something.
1 parent 42bc6d8 commit a978447

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

juriscraper/pacer/rss_feeds.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ def _parse_text(self, text):
9898

9999
@property
100100
def data(self):
101-
"""Override this to create a list of docket-like objects instead of the
102-
usual dict that is usually provided by the docket report.
101+
"""Return a list of docket-like objects instead of the usual dict that
102+
is usually provided by the BaseDocketReport superclass.
103103
"""
104104
if self._data is not None:
105105
return self._data

0 commit comments

Comments
 (0)