From eb2dbdc31494ced58dbbdbb35b8837f491b2bd56 Mon Sep 17 00:00:00 2001 From: "Fabrice L." Date: Sat, 28 Jun 2014 10:35:54 +0200 Subject: [PATCH] flake8ness --- beetsplug/lastgenre/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/lastgenre/__init__.py b/beetsplug/lastgenre/__init__.py index 3981a4a3c..950d0c71b 100644 --- a/beetsplug/lastgenre/__init__.py +++ b/beetsplug/lastgenre/__init__.py @@ -202,7 +202,7 @@ class LastGenrePlugin(plugins.BeetsPlugin): """Remove duplicates from sequence wile preserving order""" seen = set() seen_add = seen.add - return [ x for x in seq if x not in seen and not seen_add(x)] + return [x for x in seq if x not in seen and not seen_add(x)] tags = remove_duplicates(tags)