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

ffmpeg_streaming/__init__.py (1 issue)

1
from ._input import *
0 ignored issues
show
Bug Best Practice introduced by
This seems to re-define the built-in input.

It is generally discouraged to redefine built-ins as this makes code very hard to read.

Loading history...
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__
9