Skip to content

Commit 8bc8fc3

Browse files
committed
changed method name to camelcase
1 parent 2752690 commit 8bc8fc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def makeFood(food):
9090
foldMat()
9191
time.sleep(2)
9292

93-
def clear_tables():
93+
def clearTables():
9494
mousePos((204, 500))
9595
leftClick()
9696

@@ -129,7 +129,7 @@ def leftUp():
129129
def mousePos(cord):
130130
win32api.SetCursorPos((x_pad + cord[0], y_pad + cord[1]))
131131

132-
def get_cords():
132+
def getCords():
133133
x, y = win32api.GetCursorPos()
134134
x = x - x_pad
135135
y = y - y_pad

0 commit comments

Comments
 (0)