From 2d595a956f8a5f493aa51139a470b768a6d82cce Mon Sep 17 00:00:00 2001 From: Alexander Huszagh Date: Thu, 27 Dec 2018 12:13:06 -0600 Subject: [PATCH] Fixed Python example comments. Fixed comment style from C++ to Python for Python example. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 731e07d..fd2c406 100644 --- a/README.md +++ b/README.md @@ -57,13 +57,13 @@ import breeze_resources def main(): app = QtWidgets.QApplication(sys.argv) - // set stylesheet + # set stylesheet file = QFile(":/dark.qss") file.open(QFile.ReadOnly | QFile.Text) stream = QTextStream(file) app.setStyleSheet(stream.readAll()) - // code goes here + # code goes here app.exec_() }