Skip to content

Commit

Permalink
Fixed linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MShwed committed Jun 27, 2019
1 parent 1b161f9 commit b0b6de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operations/Entropy.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ class Entropy extends Operation {
run(input, args) {
const visualizationType = args[0];

if (visualizationType === 'Shannon') {
if (visualizationType === "Shannon") {
return this.createShannonEntropyVisualization(this.calculateShannonEntropy(input));
} else if (visualizationType === "Histogram (Bar)") {
return this.createByteFrequencyBarHistogram(this.calculateByteFrequency(input));
Expand Down

0 comments on commit b0b6de1

Please sign in to comment.