From bf24e9b5853f954c5ffa2478fc19d0b760304fdf Mon Sep 17 00:00:00 2001 From: nk-randers Date: Tue, 22 Oct 2024 10:28:00 +0200 Subject: [PATCH] fix lint --- python/src/main.py | 1 - tests/api_request_test.py | 1 - 2 files changed, 2 deletions(-) diff --git a/python/src/main.py b/python/src/main.py index 9d85121..63b5a31 100644 --- a/python/src/main.py +++ b/python/src/main.py @@ -29,4 +29,3 @@ def set_ready(): if __name__ == '__main__': # pragma: no cover app.run(debug=DEBUG, host='0.0.0.0', port=PORT) - diff --git a/tests/api_request_test.py b/tests/api_request_test.py index 9aecbd1..5b30fb1 100644 --- a/tests/api_request_test.py +++ b/tests/api_request_test.py @@ -179,4 +179,3 @@ def test_make_request_wrong_headers(): api_client.logger = MagicMock() assert api_client.make_request(headers='not a dict') is None api_client.logger.error.assert_called_once_with("Request failed with error: Headers must be a dictionary") -