From d97653236462c7d9f838a4e03c4945427b059eed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20D=C3=B6rfelt?= Date: Wed, 26 Jun 2024 18:32:16 +0200 Subject: [PATCH] update dependencies and apply changes --- joppy/api.py | 4 +--- requirements-dev.txt | 12 ++++++------ 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/joppy/api.py b/joppy/api.py index 45b049e..0964bfe 100644 --- a/joppy/api.py +++ b/joppy/api.py @@ -296,9 +296,7 @@ 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], diff --git a/requirements-dev.txt b/requirements-dev.txt index 8636e1f..e6e2f85 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,11 +1,11 @@ # tests -coverage==7.2.5 -requests==2.30.0 +coverage==7.5.4 +requests==2.32.3 unittest-xml-reporting==3.2.0 xvfbwrapper==0.2.9 # linting -black==23.3.0 -flake8==6.0.0 -mypy==1.2.0 +black==24.4.2 +flake8==7.1.0 +mypy==1.10.1 # TODO: Use "--install-types" when https://github.com/python/mypy/issues/10600 is solved. -types-requests==2.30.0.0 \ No newline at end of file +types-requests==2.32.3.0 \ No newline at end of file