Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
davidinations committed Mar 30, 2024
1 parent 704f8dc commit 2ed6b3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/features.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import csv

path = "../RentACar/data/data.csv"
path = "../data/data.csv"

def nik_validate(data_nik):
"""
Expand Down
8 changes: 4 additions & 4 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# Initialize the mixer module
pygame.mixer.init()

click_sound = pygame.mixer.Sound("../RentACar/assets/sounds/Click.wav")
error_sound = pygame.mixer.Sound("../RentACar/assets/sounds/Error.wav")
success_sound = pygame.mixer.Sound("../RentACar/assets/sounds/Success.wav")
click_sound = pygame.mixer.Sound("../assets/sounds/Click.wav")
error_sound = pygame.mixer.Sound("../assets/sounds/Error.wav")
success_sound = pygame.mixer.Sound("../assets/sounds/Success.wav")

def sort_data(treeview, column, reverse):
"""
Expand Down Expand Up @@ -677,7 +677,7 @@ def exit_menu():
# create a windows
root = tkinter.Tk()
# config icon windows
root.iconbitmap("../RentACar/assets/images/favicon.ico")
root.iconbitmap("../assets/images/favicon.ico")
# config size windows
root.geometry("1280x720+150-50") # <width>x<height>+<x_position>+<y_position>
# make a windows size fixed
Expand Down

0 comments on commit 2ed6b3b

Please sign in to comment.