Skip to content

Commit

Permalink
Use latest version of black (#1201)
Browse files Browse the repository at this point in the history
  • Loading branch information
tleonhardt committed Feb 16, 2022
1 parent b052dcd commit 716ab8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/arg_decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def do_fsize(self, args: argparse.Namespace) -> None:
@cmd2.with_argparser(pow_parser)
def do_pow(self, args: argparse.Namespace) -> None:
"""Raise an integer to a small integer exponent, either positive or negative"""
self.poutput('{} ** {} == {}'.format(args.base, args.exponent, args.base ** args.exponent))
self.poutput('{} ** {} == {}'.format(args.base, args.exponent, args.base**args.exponent))


if __name__ == '__main__':
Expand Down

0 comments on commit 716ab8a

Please sign in to comment.