Skip to content

Commit

Permalink
🔥 Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
leolabs committed May 29, 2021
1 parent c25eb50 commit 318be6c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/ns/scene.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import { Ableton } from "..";
import { Namespace } from ".";
import { Track, RawTrack } from "./track";
import { CuePoint, RawCuePoint } from "./cue-point";
import { SongView } from "./song-view";
import { ClipSlot, RawClipSlot } from './clip-slot';
import { ClipSlot, RawClipSlot } from "./clip-slot";

export interface GettableProperties {
clip_slots: RawClipSlot[];
Expand Down Expand Up @@ -51,7 +48,8 @@ export class Scene extends Namespace<
super(ableton, "scene", raw.id);

this.transformers = {
clip_slots: clip_slots => clip_slots.map(c => new ClipSlot(this.ableton, c)),
clip_slots: (clip_slots) =>
clip_slots.map((c) => new ClipSlot(this.ableton, c)),
};
}
}

0 comments on commit 318be6c

Please sign in to comment.