Skip to content

Commit cb8eea1

Browse files
Removed client_docker property from ROSWire (fixes #345)
1 parent 83c757a commit cb8eea1

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* Renamed `ParameterServerProxy` to `ParameterServer`.
2121
* Renamed `ServiceProxy` and `ServiceProxyManager` to `Service` and
2222
`ServiceManager`.
23+
* Removed `client_docker` property from `ROSWire`.
2324

2425

2526
# 1.0.0 (2020-31-03)

src/roswire/roswire.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
import logging
1010
import contextlib
1111

12-
from docker import DockerClient
13-
1412
from .exceptions import ROSWireException
1513
from .description import SystemDescription, SystemDescriptionManager
1614
from .system import System
@@ -65,10 +63,6 @@ def __init__(self,
6563
def workspace(self) -> str:
6664
return self.__dir_workspace
6765

68-
@property
69-
def client_docker(self) -> DockerClient:
70-
return self.__containers.docker_client
71-
7266
@property
7367
def containers(self) -> ContainerManager:
7468
return self.__containers

0 commit comments

Comments
 (0)