Skip to content

Commit

Permalink
fix(types): matched_fields dict contains arbitrary values
Browse files Browse the repository at this point in the history
  • Loading branch information
MatMoore committed Aug 7, 2024
1 parent 56bcdca commit b4c2bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/datahub-client/data_platform_catalogue/search_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class SearchResult:
display_name: str = ""
fully_qualified_name: str = ""
description: str = ""
matches: dict[str, str] = field(default_factory=dict)
matches: dict[str, Any] = field(default_factory=dict)
metadata: dict[str, Any] = field(default_factory=dict)
tags: list[TagRef] = field(default_factory=list)
glossary_terms: list[GlossaryTermRef] = field(default_factory=list)
Expand Down

0 comments on commit b4c2bf6

Please sign in to comment.