Skip to content

Commit b0b6de1

Browse files
committed
Fixed linting issue
1 parent 1b161f9 commit b0b6de1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/operations/Entropy.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ class Entropy extends Operation {
383383
run(input, args) {
384384
const visualizationType = args[0];
385385

386-
if (visualizationType === 'Shannon') {
386+
if (visualizationType === "Shannon") {
387387
return this.createShannonEntropyVisualization(this.calculateShannonEntropy(input));
388388
} else if (visualizationType === "Histogram (Bar)") {
389389
return this.createByteFrequencyBarHistogram(this.calculateByteFrequency(input));

0 commit comments

Comments
 (0)