Skip to content

Commit

Permalink
Add missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
shri committed Aug 14, 2024
1 parent 7551e35 commit 7971d4a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/db/models/custom_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def process_result_value(self, value, dialect):
if value and isinstance(value, dict):
obj = Funding.from_dict(value)
obj.round_name = FundingRound(obj.round_name) if obj.round_name else FundingRound.SERIES_UNKNOWN
return obj
return None


Expand Down

0 comments on commit 7971d4a

Please sign in to comment.