1from PyQt5.QtCore import * 2from PyQt5.QtGui import * 3from PyQt5.QtWidgets import * 4 5class QImageDB(): 6 @staticmethod 7 def initialize(image_path): 8 QImageDB.intro = QImage ( str(image_path / 'intro.png') ) 9 10