From 713a609bd19d491de03debf8a4a6ddf2540b13dc Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Thu, 3 Feb 2022 14:18:37 -0800 Subject: Change settings in flake8 and black. --- logical_search.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'logical_search.py') diff --git a/logical_search.py b/logical_search.py index 4295aa0..76c2f86 100644 --- a/logical_search.py +++ b/logical_search.py @@ -168,9 +168,7 @@ class Corpus(object): def invert_docid_set(self, original: Set[str]) -> Set[str]: """Invert a set of docids.""" - return set( - [docid for docid in self.documents_by_docid.keys() if docid not in original] - ) + return set([docid for docid in self.documents_by_docid.keys() if docid not in original]) def get_doc(self, docid: str) -> Optional[Document]: """Given a docid, retrieve the previously added Document.""" @@ -250,9 +248,7 @@ class Corpus(object): operation = Operation.from_token(token) operand_count = operation.num_operands() if len(node_stack) < operand_count: - raise ParseError( - f"Incorrect number of operations for {operation}" - ) + raise ParseError(f"Incorrect number of operations for {operation}") for _ in range(operation.num_operands()): args.append(node_stack.pop()) node = Node(corpus, operation, args) @@ -342,9 +338,7 @@ class Node(object): try: key, value = tag.split(":") except ValueError as v: - raise ParseError( - f'Invalid key:value syntax at "{tag}"' - ) from v + raise ParseError(f'Invalid key:value syntax at "{tag}"') from v if value == "*": r = self.corpus.get_docids_with_property(key) else: -- cgit v1.3