aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/reader/document/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsie/reader/document/__init__.py')
-rw-r--r--bsie/reader/document/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bsie/reader/document/__init__.py b/bsie/reader/document/__init__.py
index 4ae3613..824ad86 100644
--- a/bsie/reader/document/__init__.py
+++ b/bsie/reader/document/__init__.py
@@ -17,13 +17,13 @@ _FILE_FORMAT_READERS: typing.Sequence[str] = (
# exports
__all__: typing.Sequence[str] = (
- 'Document'
+ 'Document',
)
## code ##
-class Document(chain.ReaderChain[typing.Sequence[str]]):
+class Document(chain.ReaderChain[typing.Sequence[str]]): # pylint: disable=too-few-public-methods
"""Read paragraphs from a text file."""
def __init__(self, cfg: typing.Optional[typing.Any] = None):