PyQtPicUpload/main/QSSLoader.py

10 lines
239 B
Python
Raw Normal View History

2022-03-25 17:35:45 +08:00
class QSSLoader:
def __init__(self):
pass
@staticmethod
def read_qss_file(qss_file_name):
2022-03-25 20:24:47 +08:00
# print(qss_file_name)
2022-03-25 17:35:45 +08:00
with open(qss_file_name, 'r', encoding='UTF-8') as file:
return file.read()