Skip to content

Commit

Permalink
fixup! fixup! Issue #332 introduce support for job listing pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Dec 3, 2024
1 parent 9417856 commit a02d0c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion openeo_driver/util/http.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import base64
import json
from typing import Set, Union
import base64

import requests
import requests.adapters

Expand Down
4 changes: 1 addition & 3 deletions tests/util/test_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import requests.exceptions
from re_assert import Matches

from openeo_driver.util.http import requests_with_retry, UrlSafeStructCodec
from openeo_driver.util.http import UrlSafeStructCodec, requests_with_retry


def test_requests_with_retry(caplog):
Expand Down Expand Up @@ -67,5 +67,3 @@ def test_basic(self, data):
assert isinstance(encoded, str)
assert re.fullmatch("[a-zA-Z0-9_/=-]+", encoded)
assert codec.decode(encoded) == data

import regex

0 comments on commit a02d0c5

Please sign in to comment.