Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions BoardGame-CLI/snakeLadder.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Taking players data
players = {} # stores players name their locations
isReady = {}
current_loc = 1 # vaiable for iterating location
current_loc = 1 # variable for iterating location

imp = True

Expand All @@ -23,7 +23,7 @@ def player_input():
players[name] = current_loc
isReady[name] = False
x = False
play() # play funtion call
play() # play function call

else:
print("Number of player cannot be zero")
Expand Down Expand Up @@ -88,7 +88,7 @@ def play():
print(f"you are at position {players[i]}")

elif n == 2:
players = {} # stores player ans their locations
players = {} # stores player and their locations
isReady = {}
current_loc = 1 # reset starting location to 1
player_input()
Expand Down
2 changes: 1 addition & 1 deletion bank_managment_system/QTFrontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ def update_employee_data(name, password, salary, position, name_to_update):
)
backend.conn.commit()
show_popup_message(
stacked_widget, "Employee Upadate successfully", UPDATE_EMPLOYEE_PAGE2
stacked_widget, "Employee Update successfully", UPDATE_EMPLOYEE_PAGE2
)

except:
Expand Down