diff --git a/aula201/aula0001.py b/aula201/aula0001.py index b805b1a..7211247 100644 --- a/aula201/aula0001.py +++ b/aula201/aula0001.py @@ -24,3 +24,10 @@ # Licenças são tópicos complexos, portanto, se oriente sobre elas # antes de usar qualquer software de terceiros. # https://tldrlegal.com/license/gnu-lesser-general-public-license-v3-(lgpl-3) +import PySide6.QtCore + +# Prints PySide6 version +print(PySide6.__version__) # type: ignore + +# Prints the Qt version used to compile PySide6 +print(PySide6.QtCore.__version__) # type: ignore