From 6dfd3204d827323ee419b986d75cc85d659d2a41 Mon Sep 17 00:00:00 2001 From: Phil Barber Date: Mon, 9 Oct 2023 11:02:23 -0400 Subject: [PATCH] Clarify some code to make it easier to understand --- marklogic/client.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/marklogic/client.py b/marklogic/client.py index 8363124..c446147 100644 --- a/marklogic/client.py +++ b/marklogic/client.py @@ -127,25 +127,25 @@ def process_multipart_mixed_response(self, response): @property def documents(self): if not hasattr(self, "_documents"): - self._documents = DocumentManager(self) + self._documents = DocumentManager(session=self) return self._documents @property def rows(self): if not hasattr(self, "_rows"): - self._rows = RowManager(self) + self._rows = RowManager(session=self) return self._rows @property def transactions(self): if not hasattr(self, "_transactions"): - self._transactions = TransactionManager(self) + self._transactions = TransactionManager(session=self) return self._transactions @property def eval(self): if not hasattr(self, "_eval"): - self._eval = EvalManager(self) + self._eval = EvalManager(session=self) return self._eval __primitive_value_converters = {