Fix variable naming in service collection
This commit is contained in:
parent
6a2d528d2e
commit
6abec85703
1 changed files with 4 additions and 4 deletions
|
|
@ -43,12 +43,12 @@ class ServiceCollection(list):
|
|||
return service
|
||||
|
||||
def start(self):
|
||||
for container in self:
|
||||
container.start()
|
||||
for service in self:
|
||||
service.start()
|
||||
|
||||
def stop(self):
|
||||
for container in self:
|
||||
container.stop()
|
||||
for service in self:
|
||||
service.stop()
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue