Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,8 @@ import cmd2
class FirstApp(cmd2.Cmd):
"""A simple cmd2 application."""


def do_hello_world(self, _: cmd2.Statement):
self.poutput('Hello World')
def do_hello_world(self, _: cmd2.Statement):
self.poutput('Hello World')


if __name__ == '__main__':
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ app = App()
app.cmdloop()
```

## Getting Started
<!-- Getting Started -->

{%
include-markdown "./overview/index.md"
%}

## Migrating from cmd
<!-- Migrating from cmd -->

{%
include-markdown "./migrating/index.md"
Expand Down
Loading