# HG changeset patch # User Lucas Thompson # Date 1494951616 -3600 # Node ID fab49fd10f353a5d1c27fb76678570bf70637438 # Parent e401995304a765108ef6fc53a2883ac792a5e921 Remove more accidentally left in logic from debugging. diff -r e401995304a7 -r fab49fd10f35 src/app/services/feature-extraction/FeatureExtractionWorker.ts --- a/src/app/services/feature-extraction/FeatureExtractionWorker.ts Tue May 16 17:16:12 2017 +0100 +++ b/src/app/services/feature-extraction/FeatureExtractionWorker.ts Tue May 16 17:20:16 2017 +0100 @@ -152,9 +152,7 @@ const importThunks = Object.keys(available).map(libraryKey => { return () => { this.remoteLibraries.set(libraryKey, available[libraryKey]); - return this.import(libraryKey).then(key => { - return key; - }); + return this.import(libraryKey); }; }); waterfall(importThunks).then(() => {