Private GIT

Skip to content
Snippets Groups Projects
Commit db1e5c16 authored by miigotu's avatar miigotu
Browse files

Merge pull request #3131 from labrys/pep8-indexer_exceptions

PEP 8: Move module level imports to top of file in indexers_exceptions.py
parents c4b2b513 20393c48
Branches
Tags
No related merge requests found
#!/usr/bin/env python2.7
# encoding:utf-8
# author:echel0n
# project:indexer_api
# repository:http://github.com/echel0n/Sick-Beard
......@@ -7,15 +8,13 @@
"""Custom exceptions used or raised by indexer_api"""
from tvdb_api.tvdb_exceptions import (tvdb_exception, tvdb_error, tvdb_userabort, tvdb_shownotfound, tvdb_showincomplete,
tvdb_seasonnotfound, tvdb_episodenotfound, tvdb_attributenotfound)
__author__ = "echel0n"
__version__ = "1.0"
from tvdb_api.tvdb_exceptions import \
tvdb_exception, tvdb_attributenotfound, tvdb_episodenotfound, tvdb_error, \
tvdb_seasonnotfound, tvdb_shownotfound, tvdb_showincomplete, tvdb_userabort
indexerExcepts = ["indexer_exception", "indexer_error", "indexer_userabort", "indexer_shownotfound",
"indexer_showincomplete",
indexerExcepts = ["indexer_exception", "indexer_error", "indexer_userabort", "indexer_shownotfound", "indexer_showincomplete",
"indexer_seasonnotfound", "indexer_episodenotfound", "indexer_attributenotfound"]
tvdbExcepts = ["tvdb_exception", "tvdb_error", "tvdb_userabort", "tvdb_shownotfound", "tvdb_showincomplete",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment