Skip to content

Commit

Permalink
Merge pull request #1774 from alphagov/fix-lambda-issues
Browse files Browse the repository at this point in the history
Fix lambda issues
  • Loading branch information
kyle-c-simmons authored Oct 10, 2023
2 parents 6c84a3c + 3019881 commit d4ddeb0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def process(self):

for row in csvreader:
result = self.transform_row(row)
if result is not '' and result is not None:
if result != None:
data.append(result)

return data
Expand Down
Binary file not shown.

0 comments on commit d4ddeb0

Please sign in to comment.