Skip to content

Commit c131e61

Browse files
author
Gerit Wagner
committed
format
1 parent adde056 commit c131e61

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
"Typing :: Typed",
2626
]
2727
include = ["LICENSE", "README.md"]
28-
requires-python = ">=3.8"
28+
requires-python = ">=3.8"
2929

3030
[project.optional-dependencies]
3131
docs = [

search_query/not_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __init__(
1515
children: typing.List[typing.Union[str, Query]],
1616
*,
1717
search_field: typing.Union[SearchField, str],
18-
position: typing.Optional[tuple] = None
18+
position: typing.Optional[tuple] = None,
1919
) -> None:
2020
"""init method
2121
search terms: strings which you want to include in the search query

search_query/serializer_pubmed.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
import typing
66

7+
from search_query.constants import Operators
78
from search_query.constants import PLATFORM
89
from search_query.constants import PLATFORM_FIELD_MAP
9-
from search_query.constants import Operators
10+
1011
if typing.TYPE_CHECKING: # pragma: no
1112
from search_query.query import Query
1213

0 commit comments

Comments
 (0)