lib: Fix misplaced "# export" markers
A couple of "# export" markers after function prototypes have been pushed along with the closing parenthesis onto the wrong line by the code formatter, fix that. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
eea3e5f14b
commit
dcbe959843
5 changed files with 18 additions and 18 deletions
|
|
@ -292,8 +292,8 @@ class App: # export
|
|||
self.__async_runner = None
|
||||
return ret
|
||||
|
||||
def run_sub_commands(
|
||||
def run_sub_commands( # export
|
||||
description = '', name_filter = '^Cmd.*', modules = None, argv = None
|
||||
): # export
|
||||
):
|
||||
app = App(description, name_filter, modules)
|
||||
return app.run(argv = argv)
|
||||
|
|
|
|||
Loading…
Reference in a new issue