Fix usage of __all__
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from .dash import DASH
|
||||
from .hls import HLS
|
||||
|
||||
__ALL__ = (DASH, HLS)
|
||||
__all__ = ("DASH", "HLS")
|
||||
|
||||
@@ -783,4 +783,4 @@ class DASH:
|
||||
return url
|
||||
|
||||
|
||||
__ALL__ = (DASH,)
|
||||
__all__ = ("DASH",)
|
||||
|
||||
@@ -549,4 +549,4 @@ class HLS:
|
||||
return f"{offset}-{offset + length - 1}"
|
||||
|
||||
|
||||
__ALL__ = (HLS,)
|
||||
__all__ = ("HLS",)
|
||||
|
||||
Reference in New Issue
Block a user