summaryrefslogtreecommitdiff
path: root/logical_search.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-08 17:46:56 -0800
committerScott Gasch <[email protected]>2022-02-08 17:46:56 -0800
commite8fbbb7306430478dec55d2c963eed116d8330cc (patch)
tree28c61b43d11df95b0d70d7f12eba139e02a3942e /logical_search.py
parent0d63d44ac89aab38fe95f36497adaf95110ab949 (diff)
More cleanup, yey!
Diffstat (limited to 'logical_search.py')
-rw-r--r--logical_search.py5
1 files changed, 5 insertions, 0 deletions
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