mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-19 10:47:15 +00:00

It seems that the codebase is not formatted with the latest ruff version. This PR reformats the codebase with ruff 0.5.7.
8 lines
268 B
Python
8 lines
268 B
Python
"""Docker tests."""
|
|
|
|
from docker.types import Mount
|
|
|
|
# dev mount with equivalent of bind-recursive=writable specified via dict value
|
|
DEV_MOUNT = Mount(type="bind", source="/dev", target="/dev", read_only=True)
|
|
DEV_MOUNT["BindOptions"] = {"ReadOnlyNonRecursive": True}
|