Fix usage of __all__

This commit is contained in:
rlaphoenix
2024-01-09 02:31:02 +00:00
parent 2291f90f64
commit f28a6dc28a
29 changed files with 29 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
from .dash import DASH
from .hls import HLS
__ALL__ = (DASH, HLS)
__all__ = ("DASH", "HLS")

View File

@@ -783,4 +783,4 @@ class DASH:
return url
__ALL__ = (DASH,)
__all__ = ("DASH",)

View File

@@ -549,4 +549,4 @@ class HLS:
return f"{offset}-{offset + length - 1}"
__ALL__ = (HLS,)
__all__ = ("HLS",)