From e4fbb93f94fed426b9907162dd752385fd41757e Mon Sep 17 00:00:00 2001 From: liyp Date: Wed, 16 Mar 2022 22:01:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AF=BC=E5=85=A5=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + start.py | 7 +------ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e69de29..e037d2f 100644 --- a/README.md +++ b/README.md @@ -0,0 +1 @@ +使用`PyQt`制作的可以上传至阿里云`cos`的小工具,用来代替`PicGo` \ No newline at end of file diff --git a/start.py b/start.py index ea560d3..0c96a34 100644 --- a/start.py +++ b/start.py @@ -2,14 +2,11 @@ import sys from PyQt5 import QtCore from PyQt5.QtGui import QFont, QIcon -from PyQt5.QtWidgets import * +from PyQt5.QtWidgets import QWidget, QVBoxLayout, QPushButton, QDialog, QLabel, QLineEdit, QGridLayout, QApplication from PyQt5.QtCore import Qt from qt_material import apply_stylesheet -# import - - class MainWin(QWidget): def __init__(self): super(MainWin, self).__init__() @@ -84,8 +81,6 @@ class MainWin(QWidget): print(content) for i in content: print(i) - # pass - if __name__ == '__main__': app = QApplication(sys.argv)