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
|
||||
|
||||
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):
|
||||
|
|
Loading…
Add table
Reference in a new issue