fastled 1.3.13__py3-none-any.whl → 1.3.15__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,7 +18,7 @@ from fastled.docker_manager import (
18
18
  from fastled.settings import DEFAULT_CONTAINER_NAME, IMAGE_NAME, SERVER_PORT
19
19
  from fastled.sketch import looks_like_fastled_repo
20
20
  from fastled.types import BuildMode, CompileResult, CompileServerError
21
- from fastled.util import port_is_free
21
+ from fastled.util import port_is_free, print_banner
22
22
 
23
23
  SERVER_OPTIONS = [
24
24
  "--allow-shutdown", # Allow the server to be shut down without a force kill.
@@ -221,9 +221,8 @@ class CompileServerImpl:
221
221
  ports = {INTERNAL_DOCKER_PORT: port}
222
222
  volumes = []
223
223
  if self.fastled_src_dir:
224
- print(
225
- f"Mounting FastLED source directory {self.fastled_src_dir} into container /host/fastled/src"
226
- )
224
+ msg = f"FastLED REPO updates enabled!!\n\nMounting FastLED source directory\n{self.fastled_src_dir} into container\n/host/fastled/src"
225
+ print_banner(msg)
227
226
  volumes.append(
228
227
  Volume(
229
228
  host_path=str(self.fastled_src_dir),