FFProbe.__init__()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nop 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
from .ffprobe_proxy import FFProbeProxy
2
from .ffprobe_subject import FFProbeSubject
3
4
__all__ = ['FFProbeProxy']
5
6
7
# Proxy that proxies a Singleton ffprobe instance
8
class FFProbe(FFProbeProxy):
9
    def __init__(self, ffprobe_binary: str):
10
        super().__init__(FFProbeSubject(ffprobe_binary))
11