oops missing method
This commit is contained in:
parent
9fe6bc976f
commit
66a460bb60
1 changed files with 7 additions and 0 deletions
|
|
@ -124,6 +124,13 @@ class BaseApplication(object):
|
|||
names = self._enabled_backends
|
||||
self.weboob.load_modules(caps, names, *args, **kwargs)
|
||||
|
||||
def _get_completions(self):
|
||||
"""
|
||||
Overload this method in subclasses if you want to enrich shell completion.
|
||||
@return a set object
|
||||
"""
|
||||
return set()
|
||||
|
||||
@classmethod
|
||||
def run(klass, args=sys.argv):
|
||||
app = klass()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue