don't lint unused files

This commit is contained in:
Job Evers-Meltzer 2016-11-30 14:20:34 -06:00
parent 9ad55e93b9
commit fe3e25982c
12 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,4 @@
# pylint: skip-file
from lbrynet.cryptstream.CryptBlob import CryptStreamBlobMaker, CryptBlobInfo from lbrynet.cryptstream.CryptBlob import CryptStreamBlobMaker, CryptBlobInfo
import binascii import binascii

View file

@ -1,3 +1,4 @@
# pylint: skip-file
from lbrynet.core.StreamDescriptor import BlobStreamDescriptorWriter from lbrynet.core.StreamDescriptor import BlobStreamDescriptorWriter
from lbrynet.lbrylive.StreamDescriptor import get_sd_info from lbrynet.lbrylive.StreamDescriptor import get_sd_info
from lbrynet.cryptstream.CryptStreamCreator import CryptStreamCreator from lbrynet.cryptstream.CryptStreamCreator import CryptStreamCreator

View file

@ -1,3 +1,4 @@
# pylint: skip-file
import time import time
import logging import logging
from twisted.enterprise import adbapi from twisted.enterprise import adbapi

View file

@ -1,3 +1,4 @@
# pylint: skip-file
class BaseLiveStreamPaymentRateManager(object): class BaseLiveStreamPaymentRateManager(object):
def __init__(self, blob_info_rate, blob_data_rate=None): def __init__(self, blob_info_rate, blob_data_rate=None):
self.min_live_blob_info_payment_rate = blob_info_rate self.min_live_blob_info_payment_rate = blob_info_rate

View file

@ -1,4 +1,5 @@
# pylint: skip-file # pylint: skip-file
# pylint: skip-file
# This file is not maintained, but might be used in the future # This file is not maintained, but might be used in the future
# #
import logging import logging

View file

@ -1,4 +1,5 @@
# pylint: skip-file # pylint: skip-file
# pylint: skip-file
# This file is not maintained, but might be used in the future # This file is not maintained, but might be used in the future
# #
import logging import logging

View file

@ -1,3 +1,4 @@
# pylint: skip-file
import binascii import binascii
import logging import logging
from lbrynet.core.cryptoutils import get_lbry_hash_obj, verify_signature from lbrynet.core.cryptoutils import get_lbry_hash_obj, verify_signature

View file

@ -1,3 +1,4 @@
# pylint: skip-file
import binascii import binascii
from lbrynet.core.StreamDescriptor import StreamMetadata from lbrynet.core.StreamDescriptor import StreamMetadata
from lbrynet.cryptstream.client.CryptStreamDownloader import CryptStreamDownloader from lbrynet.cryptstream.client.CryptStreamDownloader import CryptStreamDownloader

View file

@ -1,3 +1,4 @@
# pylint: skip-file
from collections import defaultdict from collections import defaultdict
import logging import logging
from zope.interface import implements from zope.interface import implements

View file

@ -1,3 +1,4 @@
# pylint: skip-file
from lbrynet.lbrylive.StreamDescriptor import LiveStreamType, LiveStreamDescriptorValidator from lbrynet.lbrylive.StreamDescriptor import LiveStreamType, LiveStreamDescriptorValidator
from lbrynet.core.DownloadOption import DownloadOption, DownloadOptionChoice from lbrynet.core.DownloadOption import DownloadOption, DownloadOptionChoice

View file

@ -1,3 +1,4 @@
# pylint: skip-file
import logging import logging
from lbrynet.core.client.StreamProgressManager import StreamProgressManager from lbrynet.core.client.StreamProgressManager import StreamProgressManager
from twisted.internet import defer from twisted.internet import defer

View file

@ -1,3 +1,4 @@
# pylint: skip-file
import logging import logging
from twisted.internet import defer from twisted.internet import defer
from zope.interface import implements from zope.interface import implements