Skip to content

Commit 2b1049b

Browse files
committed
Update the path for the image
1 parent 58f37ce commit 2b1049b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chordspy/beetle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
calibration_duration = 10
5656

5757
sprite_count = 10
58-
beetle_sprites = [pygame.image.load(f'chordspy/media/Beetle{i}.png') for i in range(1, sprite_count + 1)]
58+
beetle_sprites = [pygame.image.load(f'C:/Users/PAYAL/Desktop/Chords-Python/chordspy/media/Beetle{i}.png') for i in range(1, sprite_count + 1)]
5959
beetle_sprites = [pygame.transform.smoothscale(sprite, (140, 160)) for sprite in beetle_sprites]
6060

6161
# Animation Variables

chordspy/keystroke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def move(event):
203203
horizontal_frame = tk.Frame(popup)
204204
horizontal_frame.pack(expand=True, pady=10)
205205

206-
eye_icon = PhotoImage(file="chordspy\\media\\icons8-eye-30.png")
206+
eye_icon = PhotoImage(file="C:/Users/PAYAL/Desktop/Chords-Python/chordspy/media/icons8-eye-30.png")
207207

208208
blink_button = tk.Button(horizontal_frame, image=eye_icon, width=70, height=38, bg="#FFFFFF")
209209
blink_button.image = eye_icon

0 commit comments

Comments
 (0)