From 20e24df905a9b19e932239bf7780f02897a78034 Mon Sep 17 00:00:00 2001 From: GKT Date: Thu, 27 Dec 2018 09:01:22 -0700 Subject: [PATCH] Single line fix for PyQt5 example Just fixed the typo in the PyQt5 line from C++ syntax to Python --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dea12a0..731e07d 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ def main(): app = QtWidgets.QApplication(sys.argv) // set stylesheet - QFile file(":/dark.qss"); + file = QFile(":/dark.qss") file.open(QFile.ReadOnly | QFile.Text) stream = QTextStream(file) app.setStyleSheet(stream.readAll())