From 8320bfaf6de7001bea218f2c355fdd7d0ced198e Mon Sep 17 00:00:00 2001 From: Simon Hyll Date: Thu, 9 Nov 2023 03:14:45 +0100 Subject: [PATCH] docs: seconds not ms The underlying requests session will interpret the value as seconds, not ms. --- stardog/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stardog/connection.py b/stardog/connection.py index af7f0ff..4efc039 100644 --- a/stardog/connection.py +++ b/stardog/connection.py @@ -376,7 +376,7 @@ def select( :param base_uri: Base URI for the parsing of the query :param limit: Maximum number of results to return :param offset: Offset into the result set - :param timeout: Number of ms after which the query should + :param timeout: Number of seconds after which the query should timeout. ``0`` or less implies no timeout :param reasoning: Enable reasoning for the query :param bindings: Map between query variables and their values