Skip to content

Commit

Permalink
removed circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
iamtalhaasghar committed Jan 17, 2022
1 parent b6f36c3 commit 99fdaa2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mps_youtube/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@
import os

import pafy

from . import g, c, commands, screen, history, util
from . import __version__, playlists, content, listview
from . import config
from . import util

completer = None
try:
Expand All @@ -44,6 +41,9 @@
except ImportError:
has_readline = False

from . import g, c, commands, screen, history
from . import __version__, playlists, content, listview
from . import config

mswin = os.name == "nt"

Expand Down

0 comments on commit 99fdaa2

Please sign in to comment.