This repository has been archived on 2022-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-50/automation/qt_common/qt_dialog_style.py

5 lines
167 B
Python

"""This module has an embedded CSS file defining the style of the dialogs."""
import pkgutil
STYLESHEET = pkgutil.get_data(__name__, "./dialog.css").decode("utf-8")