From e8fbbb7306430478dec55d2c963eed116d8330cc Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 8 Feb 2022 17:46:56 -0800 Subject: More cleanup, yey! --- logical_search.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'logical_search.py') diff --git a/logical_search.py b/logical_search.py index 76c2f86..b55e689 100644 --- a/logical_search.py +++ b/logical_search.py @@ -1,5 +1,9 @@ #!/usr/bin/env python3 +"""This is a module concerned with the creation of and searching of a +corpus of documents. The corpus is held in memory for fast +searching.""" + from __future__ import annotations import enum @@ -12,6 +16,7 @@ class ParseError(Exception): """An error encountered while parsing a logical search expression.""" def __init__(self, message: str): + super().__init__() self.message = message -- cgit v1.3