Skip to content

Commit

Permalink
refactor: Removed redundant getKeyFromName in dataset_utils.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrimpCryptid committed Mar 29, 2024
1 parent cf37af6 commit d0dfe32
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/colorizer/utils/dataset_utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Defines types for working with dataset manifests, and methods for
// updating manifests from one version to another.
import { getKeyFromName } from "./data_utils";
import { Spread } from "./type_utils";

// eslint-disable-next-line @typescript-eslint/naming-convention
Expand Down Expand Up @@ -106,7 +105,6 @@ export const updateManifestVersion = (manifest: AnyManifestFile): ManifestFile =
const featureMetadata = manifest.featureMetadata?.[featureName];
features.push({
name: featureName,
key: getKeyFromName(featureName),
data: featurePath,
units: featureMetadata?.units || undefined,
type: featureMetadata?.type || undefined,
Expand Down

0 comments on commit d0dfe32

Please sign in to comment.