Skip to content

Commit 09126fb

Browse files
committed
Excluding the newer endpoint format from coverage
1 parent a62a246 commit 09126fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arango/cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def fetch(self) -> Json:
290290

291291
endpoint = f"/_api/{self._type}/{self._id}"
292292
if self._allow_retry and self._next_batch_id is not None:
293-
endpoint += f"/{self._next_batch_id}"
293+
endpoint += f"/{self._next_batch_id}" # pragma: no cover
294294

295295
request = Request(method="post", endpoint=endpoint)
296296
resp = self._conn.send_request(request)

0 commit comments

Comments
 (0)