Skip to content

Commit

Permalink
Moved CSV to examples/CSV
Browse files Browse the repository at this point in the history
  • Loading branch information
lancegliser committed Oct 2, 2024
1 parent d36b75f commit ceefd75
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { readFileSync } from "fs";
import { FeatureAttributes, FeatureAttributesIndex } from "../../types";
import { AbstractDataType } from "../base";
import { expectFeatureAttributesIndex } from "../infer.test";
import { InferFeatureAttributesFromCSV, InferFeatureAttributesFromCSVOptions } from "./CSV";
import type { FeatureAttributes, FeatureAttributesIndex } from "../../../types";
import type { AbstractDataType } from "../../base";
import { expectFeatureAttributesIndex } from "../../infer.test";
import { InferFeatureAttributesFromCSV, type InferFeatureAttributesFromCSVOptions } from "./CSV";

describe("features/sources/CSV", () => {
describe("InferFeatureAttributesFromArray", () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*/

import { autoType, csvParse } from "d3-dsv";
import { AbstractDataType, FeatureSourceFormat } from "../base";
import { InferFeatureAttributesFromArray } from "./Array";
import type { AbstractDataType, FeatureSourceFormat } from "../../base";
import { InferFeatureAttributesFromArray } from "../Array";

export type InferFeatureAttributesFromCSVOptions = {
limit?: number;
Expand Down

0 comments on commit ceefd75

Please sign in to comment.