mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-09-01 09:45:13 +00:00
pylint: ignore incorrect not-callable message
This commit is contained in:
parent
a30a9ad763
commit
98efa9f466
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ class CommandHandlerFactory(object):
|
||||||
return self.control_handler_class.prompt_description
|
return self.control_handler_class.prompt_description
|
||||||
|
|
||||||
def get_handler(self, console):
|
def get_handler(self, console):
|
||||||
return self.control_handler_class(console, *self.args)
|
return self.control_handler_class(console, *self.args) # pylint: disable=not-callable
|
||||||
|
|
||||||
|
|
||||||
class CommandHandler(object):
|
class CommandHandler(object):
|
||||||
|
|
Loading…
Add table
Reference in a new issue