From 32438f369d46533390c0316096c5c8ae2c1c8f42 Mon Sep 17 00:00:00 2001 From: vova Date: Thu, 8 Jun 2023 09:33:30 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'main.py'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index 8522763..f9f883f 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,5 @@ import typing -from PyQt5 import QtCore, QtGui, QtWidgets #импорт нужный библиотек +from PyQt5 import QtCore, QtGui, QtWidgets #импорт нужных библиотек from PyQt5 import uic from PyQt5.QtGui import QColor, QPalette from PyQt5.QtGui import QPixmap, QMouseEvent @@ -345,9 +345,9 @@ class AppWindow(QMainWindow): status_code = reply.attribute(QNetworkRequest.Attribute.HttpStatusCodeAttribute) self.ui.textEdit_message.append(msg + f'сервер вернул статус код {status_code}') - return wrapper + return wrapper # вообще-то, имя этого киберспортсмена из hearthstone — Viper - return inner #это не игрок в hearthstone + return inner # это не игрок в hearthstone @with_err_handling('POST_reply') @@ -361,9 +361,9 @@ class AppWindow(QMainWindow): def handle_get_reply(self): res = self.GET_reply.readAll().data() - data = json.loads(res) #функция преобразования данных в объект питон + data = json.loads(res) # преобразование данных из джейсон - self.ui.textEdit_message.append(json.dumps(data, separators=(',', ':'))) #выводим значение в line_edit + self.ui.textEdit_message.append(json.dumps(data, separators=(',', ':'))) # вывод значение в line_edit # Update lamps for i in range(1,4):