Skip to content

Commit 8c6dec7

Browse files
committed
remove more print statements
1 parent b6361b0 commit 8c6dec7

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/lexmachina/query/district_casequery.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,6 @@ def set_damages_minimum_amount(self, amount):
463463
"""
464464
if amount <= 0 or isinstance(amount, str):
465465
raise ValueError("Damages amount must be a number greater than 0")
466-
print(pprint.pformat(self._query_template))
467466
self._query_template['damages'][0]['minimumAmount'] = amount
468467
return self
469468

src/lexmachina/query/state_casequery.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ def validate_date(self, date):
5757

5858
def set_terminated_date(self, date, operator='terminated'):
5959
self.set_date(date, self._query_template['dates']['terminated'], operator)
60-
print(f'{self._query_template}')
6160
return self
6261

6362
def set_case_status(self, status):

0 commit comments

Comments
 (0)