# SPDX-License-Identifier: MIT # # Little christmas candle # # Author: Nils Freydank # Year: 2022 # Copyright: MIT import _thread from light import flicker from music import play_music if __name__ == "__main__": _thread.start_new_thread(flicker, ()) play_music() # vim:fileencoding=utf-8:ts=4:syntax=python:expandtab