This commit is contained in:
xyj 2024-03-09 14:51:26 +08:00
parent 9cf915058b
commit 2fe0520557
2 changed files with 10 additions and 10 deletions

View File

@ -7,20 +7,20 @@ black_list = [
"Check": 38, "Check": 38,
"Point": [ "Point": [
{ {
"x": 100, "X": 100,
"y": 100 "Y": 100
}, },
{ {
"x": 100, "X": 100,
"y": 100 "Y": 100
}, },
{ {
"x": 100, "X": 100,
"y": 100 "Y": 100
}, },
{ {
"x": 100, "X": 100,
"y": 100 "Y": 100
} }
] ]
} }

View File

@ -46,8 +46,8 @@ def handle_client(client_socket):
client_socket.close() client_socket.close()
return return
Point = data["Point"] Point = data["Point"]
x = Point[0]["x"] x = Point[0]["X"]
y = Point[0]["y"] y = Point[0]["Y"]
print(x, y) print(x, y)
click_it(x, y) click_it(x, y)
except Exception as e: except Exception as e: