Skip to content

Commit

Permalink
Merge pull request #39 from BillFarber/task/codeClarification
Browse files Browse the repository at this point in the history
Clarify some code to make it easier to understand
  • Loading branch information
BillFarber authored Oct 9, 2023
2 parents 08d8f0a + 6dfd320 commit 7b3185b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions marklogic/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 7b3185b

Please sign in to comment.