Skip to content

Commit

Permalink
Revert "update dependencies and apply changes"
Browse files Browse the repository at this point in the history
This reverts commit d976532 to
stay compatible with python 3.8.
  • Loading branch information
marph91 committed Jun 26, 2024
1 parent d976532 commit e6c32c7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion joppy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,9 @@ def modify_revision(self, id_: str, **data: dt.JoplinTypes) -> None:


class Search(ApiBase):
def search(self, **query: dt.JoplinTypes) -> Union[
def search(
self, **query: dt.JoplinTypes
) -> Union[
dt.DataList[dt.NoteData],
dt.DataList[dt.NotebookData],
dt.DataList[dt.ResourceData],
Expand Down
12 changes: 6 additions & 6 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# tests
coverage==7.5.4
requests==2.32.3
coverage==7.2.5
requests==2.30.0
unittest-xml-reporting==3.2.0
xvfbwrapper==0.2.9
# linting
black==24.4.2
flake8==7.1.0
mypy==1.10.1
black==23.3.0
flake8==6.0.0
mypy==1.2.0
# TODO: Use "--install-types" when https://github.com/python/mypy/issues/10600 is solved.
types-requests==2.32.3.0
types-requests==2.30.0.0

0 comments on commit e6c32c7

Please sign in to comment.