From df06ca94a3bc501f82d0d361293312d4d128fc7f Mon Sep 17 00:00:00 2001 From: justuser31 Date: Fri, 21 Apr 2023 20:22:39 +0300 Subject: [PATCH] Revert --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 314fb55..4f63182 100644 --- a/main.py +++ b/main.py @@ -63,8 +63,8 @@ class RequestHandler(BaseHTTPRequestHandler): body = self.rfile.read(content_length) params = parse_qs(body.decode('utf-8')) - x = int(params['y'][0]) - y = int(params['x'][0]) + y = int(params['y'][0]) + x = int(params['x'][0]) color = params['color'][0] matrix = self.get_matrix()