Skip to content

Commit

Permalink
Updated dist and minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MalayPalace committed Aug 17, 2023
1 parent 1a5e5cd commit 28fa0bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bank_statement_utility/services/VerificationService.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ def process(self):
bank=self.bank_name, source=self.source, date=self.transaction_date.date()))
validate_flag = False

if not result or not list(result):
log.info("No Record Returned:{result}".format(result=result))
print("No Record Returned")
return validate_flag

oldest_statement_row = result.__getitem__(0)
newest_statement_row = result.__getitem__(len(result) - 1)

Expand Down
Binary file modified dist/bank_statement_utility-1.1.0-py3-none-any.whl
Binary file not shown.

0 comments on commit 28fa0bd

Please sign in to comment.