Skip to content

Commit 381f680

Browse files
algoflowsclaude
andcommitted
fix(econify): remove unused imports and variables
- Removed unused allowsTimeDimension import from normalization.ts - Removed unused assertAlmostEquals import from temporal_aggregation_test.ts - Removed unused mockFX variable from temporal_aggregation_test.ts - All lint checks now passing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f97e5bb commit 381f680

2 files changed

Lines changed: 1 addition & 14 deletions

File tree

packages/econify/src/batch/temporal_aggregation_test.ts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,10 @@
22
* Comprehensive tests for temporal aggregation integration in batch processing
33
*/
44

5-
import {
6-
assertAlmostEquals,
7-
assertEquals,
8-
assertExists,
9-
} from "jsr:@std/assert@^1.0.0";
5+
import { assertEquals, assertExists } from "jsr:@std/assert@^1.0.0";
106
import { processBatch } from "./batch.ts";
117
import type { BatchItem } from "./batch.ts";
128

13-
const mockFX = {
14-
base: "USD",
15-
rates: {
16-
EUR: 0.92,
17-
GBP: 0.79,
18-
},
19-
};
20-
219
Deno.test("Batch: period-cumulative BLOCKS time conversion", async () => {
2210
const items: BatchItem[] = [
2311
{

packages/econify/src/normalization/normalization.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {
1515
allowsCurrency,
1616
allowsMagnitude,
1717
allowsTimeConversion,
18-
allowsTimeDimension,
1918
} from "./indicator_type_rules.ts";
2019

2120
// ----------------------- Combined Normalization -----------------------

0 commit comments

Comments
 (0)