Files
I-SecretUpdate/hook-customtkinter.py
T
2026-01-20 16:05:31 +01:00

9 lines
278 B
Python

"""
PyInstaller runtime hook for CustomTkinter.
Ensures theme assets are found in bundled executable.
"""
from PyInstaller.utils.hooks import collect_data_files, collect_submodules
datas = collect_data_files('customtkinter')
hiddenimports = collect_submodules('customtkinter')