Passed
Push — master ( 79d402...4ebce0 )
by Amin
01:15
created

ffmpeg_streaming/__init__.py (12 issues)

1
from ._input import *
2
from ._format import *
3
from ._reperesentation import *
4
from ._media_property import *
5
from ._clouds import *
6
from .ffprobe import *
7
8
__all__ = _input.__all__ + _format.__all__ + _reperesentation.__all__ + _media_property.__all__ + _clouds.__all__ + ffprobe.__all__
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable _clouds does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable _media_property does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable _input does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable _reperesentation does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable _format does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable ffprobe does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
Undefined variable '_input'
Loading history...
Comprehensibility Best Practice introduced by
Undefined variable '_format'
Loading history...
Comprehensibility Best Practice introduced by
Undefined variable '_reperesentation'
Loading history...
Comprehensibility Best Practice introduced by
Undefined variable '_media_property'
Loading history...
Comprehensibility Best Practice introduced by
Undefined variable '_clouds'
Loading history...
Comprehensibility Best Practice introduced by
Undefined variable 'ffprobe'
Loading history...
9