Skip to content

Commit

Permalink
Changed import order to avoid "ImportError"
Browse files Browse the repository at this point in the history
  • Loading branch information
Javinator9889 committed Feb 12, 2020
1 parent ad0cbac commit 99342f1
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions YouTubeMDBot/__init__.py
Expand Up @@ -15,23 +15,33 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from .api import YouTubeAPI
from .api import YouTubeVideoData

from .audio import FFmpegMP3
from .audio import FFmpegOGG
from .audio import FFmpegOpener
from .audio import FPCalc
from .audio import ffmpeg_available

from .multiprocess import ThreadPoolBase

from .commands import StartHandler

from .constants import *

from .decorators import restricted
from .decorators import send_action
from .downloader import MultipleYouTubeDownloader
from .downloader import YouTubeDownloader

from .errors import EmptyBodyError
from .errors import FinishedException

from .downloader import MultipleYouTubeDownloader
from .downloader import YouTubeDownloader

from .logging_utils import LoggingHandler
from .logging_utils import setup_logging

from .metadata import AudioMetadata
from .metadata import MetadataIdentifier
from .metadata import YouTubeMetadataIdentifier
from .multiprocess import ThreadPoolBase

from .utils import get_yt_video_id

0 comments on commit 99342f1

Please sign in to comment.