Update Python example to use Python 3 syntax

This commit is contained in:
Briscoooe 2023-01-28 21:23:02 +00:00 committed by GitHub
parent a879523e5c
commit ffa23d972e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ func main() {
```python
import docker
client = docker.from_env()
print client.containers.run("alpine", ["echo", "hello", "world"])
print(client.containers.run("alpine", ["echo", "hello", "world"]))
```
</div>