From 47e98c8fccafd9aab31cc34d5a729e0ad8c8a8bf Mon Sep 17 00:00:00 2001 From: mouwrice Date: Tue, 17 Oct 2023 16:52:40 +0200 Subject: [PATCH] chore: move working dir to root --- src/main.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main.py b/src/main.py index 0ad46c0..059a5c9 100644 --- a/src/main.py +++ b/src/main.py @@ -9,13 +9,13 @@ class Tracker: def __init__(self): - snare_drum = Sound("../DrumSamples/Snare/CKV1_Snare Loud.wav", (-100, 0, 600)) - hi_hat = Sound("../DrumSamples/HiHat/CKV1_HH Closed Loud.wav", (-220, -200, 800)) - kick_drum = Sound("../DrumSamples/Kick/CKV1_Kick Loud.wav", (-475, 200, 30)) - hi_hat_foot = Sound("../DrumSamples/HiHat/CKV1_HH Foot.wav", (-420, -350, 30)) - tom1 = Sound("../DrumSamples/Perc/Tom1.wav", (-320, 0, 800)) - tom2 = Sound("../DrumSamples/Perc/Tom2.wav", (-320, 100, 850)) - cymbal = Sound("../DrumSamples/cymbals/Hop_Crs.wav", (-50, 500, 925)) + snare_drum = Sound("./DrumSamples/Snare/CKV1_Snare Loud.wav", (-100, 0, 600)) + hi_hat = Sound("./DrumSamples/HiHat/CKV1_HH Closed Loud.wav", (-220, -200, 800)) + kick_drum = Sound("./DrumSamples/Kick/CKV1_Kick Loud.wav", (-475, 200, 30)) + hi_hat_foot = Sound("./DrumSamples/HiHat/CKV1_HH Foot.wav", (-420, -350, 30)) + tom1 = Sound("./DrumSamples/Perc/Tom1.wav", (-320, 0, 800)) + tom2 = Sound("./DrumSamples/Perc/Tom2.wav", (-320, 100, 850)) + cymbal = Sound("./DrumSamples/cymbals/Hop_Crs.wav", (-50, 500, 925)) self.markers: list[Marker] = [ Marker("WristOut_L", 14, [snare_drum, hi_hat, tom1, tom2, cymbal], downward_trend=-3, upward_trend=0.5),