Navigation Menu

Skip to content

Commit

Permalink
Changed import order to avoid "ImportError"
Browse files Browse the repository at this point in the history
In addition, the .gitlab-ci.yml was changed so not all updates are installed
  • Loading branch information
Javinator9889 committed Feb 12, 2020
1 parent 99342f1 commit adf0e72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Expand Up @@ -19,7 +19,7 @@ cache:
before_script:
- python -V # Print out python version for debugging
- apt update
- apt install -y libchromaprint-tools ffmpeg --install-recommends
- apt install -y libchromaprint-tools ffmpeg
- git clone https://github.com/beetbox/pyacoustid.git && cd pyacoustid
- python setup.py install
- cd .. && rm -rf pyacoustid/
Expand Down
6 changes: 3 additions & 3 deletions YouTubeMDBot/__init__.py
Expand Up @@ -13,6 +13,9 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from .errors import EmptyBodyError
from .errors import FinishedException

from .api import YouTubeAPI
from .api import YouTubeVideoData

Expand All @@ -31,9 +34,6 @@
from .decorators import restricted
from .decorators import send_action

from .errors import EmptyBodyError
from .errors import FinishedException

from .downloader import MultipleYouTubeDownloader
from .downloader import YouTubeDownloader

Expand Down

0 comments on commit adf0e72

Please sign in to comment.