Fixed Python example comments.

Fixed comment style from C++ to Python for Python example.
main
Alexander Huszagh 2018-12-27 12:13:06 -06:00 committed by GitHub
parent bdf7438118
commit 2d595a956f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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_()
}