From 5299953903bc724c62036a5f0540aa82ff7490f2 Mon Sep 17 00:00:00 2001 From: TomDonoghue Date: Thu, 5 Apr 2018 15:37:42 -0700 Subject: [PATCH] Lint: fix line length --- fooof/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fooof/utils.py b/fooof/utils.py index 7eb2307f..20abb02a 100644 --- a/fooof/utils.py +++ b/fooof/utils.py @@ -140,7 +140,8 @@ def combine_fooofs(fooofs): # Compare settings if not compare_settings(fooofs) or not compare_data_info(fooofs): - raise ValueError('These objects have incompatible settings or data, and so cannot be combined.') + raise ValueError("These objects have incompatible settings or data," \ + "and so cannot be combined.") # Initialize FOOOFGroup object, with settings derived from input objects # Note: FOOOFGroup imported here to avoid an import circularity if imported at the top