Completed
Pull Request — master (#543)
by
unknown
02:30
created

DockerBasePythonAction   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
wmc 1
1
from st2actions.runners.pythonrunner import Action
2
3
from lib.docker_wrapper import DockerWrapper
4
5
__all__ = [
6
    'DockerBasePythonAction'
7
]
8
9
10
class DockerBasePythonAction(Action):
11
    def __init__(self, config):
12
        super(DockerBasePythonAction, self).__init__(config=config)
13
        self.wrapper = DockerWrapper(docker_opts=self.config)
14