diff options
| author | Scott <[email protected]> | 2022-02-02 12:13:27 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-02-02 12:13:27 -0800 |
| commit | 31c81f6539969a5eba864d3305f9fb7bf716a367 (patch) | |
| tree | 497c8911d370002ac195d31d196ba5bcd6da6db8 /logical_search.py | |
| parent | 5317c50ce7a96a37acfab3800c0935580766dbbf (diff) | |
Used isort to sort imports. Also added to the git pre-commit hook.
Diffstat (limited to 'logical_search.py')
| -rw-r--r-- | logical_search.py | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/logical_search.py b/logical_search.py index c324ff8..4295aa0 100644 --- a/logical_search.py +++ b/logical_search.py @@ -2,20 +2,10 @@ from __future__ import annotations -from collections import defaultdict import enum import sys -from typing import ( - Any, - Dict, - List, - NamedTuple, - Optional, - Set, - Sequence, - Tuple, - Union, -) +from collections import defaultdict +from typing import Any, Dict, List, NamedTuple, Optional, Sequence, Set, Tuple, Union class ParseError(Exception): |
