次のコードを PyQt5 (そこで動作します) から PyQt6 に変換する必要があります。
self.setWindowFlags(Qt.FramelessWindowHint)
これはエラーです:
AttributeError: type object 'Qt' has no attribute 'FramelessWindowHint'
私はすでにこれを試しました:
self.setWindowFlags(Qt.WindowFlags.FramelessWindowHint)
それは言います:
AttributeError: type object 'Qt' has no attribute 'WindowFlags'