Skip to content

Commit

Permalink
fix: typo (#1860)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jc2k authored Jan 13, 2025
1 parent 586950c commit a9e7d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music_assistant/providers/musicbrainz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def replace_hyphens(data: _T) -> _T:
return cast(_T, new_values)

if isinstance(data, list):
return cast(_T, [replace_hyphens(x) if isinstance(x, dict) else x for x in value])
return cast(_T, [replace_hyphens(x) if isinstance(x, dict) else x for x in data])

return data

Expand Down

0 comments on commit a9e7d40

Please sign in to comment.