From d180d42ddb7658ee2a3d1f980c2c9c4e1bc563c4 Mon Sep 17 00:00:00 2001 From: Adrian Kowalski Date: Mon, 12 Oct 2015 09:50:12 +0200 Subject: [PATCH] Fix flake8 complaint about line length --- beetsplug/zero.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beetsplug/zero.py b/beetsplug/zero.py index 561430ddc3..b538d61677 100644 --- a/beetsplug/zero.py +++ b/beetsplug/zero.py @@ -81,7 +81,8 @@ def validate_config(self, mode): def set_pattern(self, field): """Set a field in `self.patterns` to a string list corresponding to - the configuration, or `True` if the field has no specific configuration. + the configuration, or `True` if the field has no specific + configuration. """ try: self.patterns[field] = self.config[field].as_str_seq()