We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b052dcd commit 716ab8aCopy full SHA for 716ab8a
examples/arg_decorators.py
@@ -49,7 +49,7 @@ def do_fsize(self, args: argparse.Namespace) -> None:
49
@cmd2.with_argparser(pow_parser)
50
def do_pow(self, args: argparse.Namespace) -> None:
51
"""Raise an integer to a small integer exponent, either positive or negative"""
52
- self.poutput('{} ** {} == {}'.format(args.base, args.exponent, args.base ** args.exponent))
+ self.poutput('{} ** {} == {}'.format(args.base, args.exponent, args.base**args.exponent))
53
54
55
if __name__ == '__main__':
0 commit comments