From f168ddc7cf054811d69d69028ad242bd2c593194 Mon Sep 17 00:00:00 2001 From: Antoine Roy-Gobeil Date: Thu, 25 Oct 2018 15:25:20 -0400 Subject: [PATCH] fix lint --- src/plot_api/plot_schema.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plot_api/plot_schema.js b/src/plot_api/plot_schema.js index 5be5ff042b0..b3f873248a7 100644 --- a/src/plot_api/plot_schema.js +++ b/src/plot_api/plot_schema.js @@ -461,8 +461,8 @@ function getTraceAttributes(type) { attributes.type = null; - var copyBaseAttributes = extendDeepAll({}, baseAttributes), - copyModuleAttributes = extendDeepAll({}, _module.attributes); + var copyBaseAttributes = extendDeepAll({}, baseAttributes); + var copyModuleAttributes = extendDeepAll({}, _module.attributes); // prune global-level trace attributes that are already defined in a trace exports.crawl(copyModuleAttributes, function(attr, attrName, attrs, level, fullAttrString) {