Skip to content

Commit 716ab8a

Browse files
authored
Use latest version of black (python-cmd2#1201)
1 parent b052dcd commit 716ab8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/arg_decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def do_fsize(self, args: argparse.Namespace) -> None:
4949
@cmd2.with_argparser(pow_parser)
5050
def do_pow(self, args: argparse.Namespace) -> None:
5151
"""Raise an integer to a small integer exponent, either positive or negative"""
52-
self.poutput('{} ** {} == {}'.format(args.base, args.exponent, args.base ** args.exponent))
52+
self.poutput('{} ** {} == {}'.format(args.base, args.exponent, args.base**args.exponent))
5353

5454

5555
if __name__ == '__main__':

0 commit comments

Comments
 (0)