make sound unique
This commit is contained in:
parent
f3d26879fd
commit
ba6ee2e62e
1 changed files with 3 additions and 0 deletions
|
@ -333,6 +333,9 @@ class Imdb(SiteParser):
|
||||||
if 'country' in self:
|
if 'country' in self:
|
||||||
self['country'] = [normalize_country_name(c) or c for c in self['country']]
|
self['country'] = [normalize_country_name(c) or c for c in self['country']]
|
||||||
|
|
||||||
|
if 'sound' in self:
|
||||||
|
self['sound'] = list(set(self['sound']))
|
||||||
|
|
||||||
types = {}
|
types = {}
|
||||||
stop_words = [
|
stop_words = [
|
||||||
'alternative spelling',
|
'alternative spelling',
|
||||||
|
|
Loading…
Reference in a new issue