#14034: fix indentation.

This commit is contained in:
Ezio Melotti 2012-05-06 17:05:16 +03:00
parent 6cc7a41c2f
commit 9ab3fdd8cb

View file

@ -181,7 +181,7 @@ Now, how about doing something even more useful::
parser = argparse.ArgumentParser()
parser.add_argument("square", help="display a square of a given number")
args = parser.parse_args()
print(args.square**2))
print(args.square**2)
Following is a result of running the code: