Closed JCionx closed 10 hours ago
In the Create your first app with PyQt6 tutorial there's a misspelled Python expression in the Stepping through the code.
This is the sentence that contains the misspelled expression:
Next we create an instance of QApplication, passing in sys.arg, which is Python list containing the command line arguments passed to the application.
QApplication
sys.arg
list
In this sentence, the sys.arg expression is incorrect, and should instead be sys.argv.
sys.argv
Here is a screenshot that shows the sentence where the expression is:
Thanks for the great tutorial! Just wanted to point out a small typo.
https://github.com/pythonguis/pythonguis/pull/176
In the Create your first app with PyQt6 tutorial there's a misspelled Python expression in the Stepping through the code.
This is the sentence that contains the misspelled expression:
In this sentence, the
sys.arg
expression is incorrect, and should instead besys.argv
.Here is a screenshot that shows the sentence where the expression is:
Thanks for the great tutorial! Just wanted to point out a small typo.