Remove random statement glued onto comment line

And also copy-and-paste duplicate.
This commit is contained in:
Olly Betts 2017-07-28 09:37:41 +12:00
commit 46f7217c50
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ class CEO(example.Manager):
# Create an instance of our employee extension class, CEO. The calls to
# getName() and getPosition() are standard, the call to getTitle() uses
# the director wrappers to call CEO.getPosition. e = CEO("Alice")
# the director wrappers to call CEO.getPosition.
e = CEO("Alice")
print e.getName(), "is a", e.getPosition()