Completed
Push — master ( 32acac...19ae40 )
by Lakshmi
11:34
created

DockerBasePythonAction.__init__()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
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