Skip to content

Commit fb2b4dc

Browse files
Nuclear MarmaladeNuclear Marmalade
authored andcommitted
Format db.py imports
1 parent 15eb17a commit fb2b4dc

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

forge/db.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,10 @@ def write_enrichment(
188188
"business_id": business_id,
189189
"fields_updated": list(safe_updates.keys()),
190190
}
191-
except (DatabaseError, Exception) as e: # Non-critical: return error dict instead of crashing caller
191+
except (
192+
DatabaseError,
193+
Exception,
194+
) as e: # Non-critical: return error dict instead of crashing caller
192195
logger.error("write_enrichment failed for %s: %s", business_id, e)
193196
return {"status": "error", "business_id": business_id, "error": str(e)}
194197

0 commit comments

Comments
 (0)