Remove this network. Raises: :py:class:`docker.errors.APIError` If the server returns an error.
(self)
| 81 | ) |
| 82 | |
| 83 | def remove(self): |
| 84 | """ |
| 85 | Remove this network. |
| 86 | |
| 87 | Raises: |
| 88 | :py:class:`docker.errors.APIError` |
| 89 | If the server returns an error. |
| 90 | """ |
| 91 | return self.client.api.remove_network(self.id) |
| 92 | |
| 93 | |
| 94 | class NetworkCollection(Collection): |
nothing calls this directly
no test coverage detected