14 lines
361 B
Python
14 lines
361 B
Python
"""FastLED CI tools and utilities
|
|
|
|
Module-level initialization to ensure consistent runtime behavior across tools.
|
|
"""
|
|
|
|
# Configure UTF-8 console output on Windows globally for CI tools
|
|
try:
|
|
from ci.util.console_utf8 import configure_utf8_console
|
|
|
|
configure_utf8_console()
|
|
except Exception:
|
|
# Never fail import due to console configuration
|
|
pass
|