Fixed linter

This commit is contained in:
kuldeep.k@cisinlabs.com 2021-12-03 12:31:28 +05:30
parent 3cc49da6f1
commit c5dee5f22e
No known key found for this signature in database
GPG Key ID: AF4FB299BF7C7C2A
3 changed files with 4 additions and 3 deletions

View File

@ -1,2 +1,3 @@
def main():
pass
"""Mock main function"""
pass

View File

@ -3,6 +3,7 @@
# TODO make this dynamic, and watch out for frozen, like with messagetypes
from singleton import Singleton
# pylint: disable=old-style-class,too-few-public-methods
@Singleton
class MockInventory():

View File

@ -3,12 +3,11 @@
"""
import logging
import asyncore_pollchoose as asyncore
from bmconfigparser import BMConfigParser
from singleton import Singleton
logger = logging.getLogger('default')
# pylint: disable=too-few-public-methods
@Singleton
class MockBMConnectionPool(object):