diff options
Diffstat (limited to 'examples/shapes.py')
-rw-r--r-- | examples/shapes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/shapes.py b/examples/shapes.py index c5f4867..73ed334 100644 --- a/examples/shapes.py +++ b/examples/shapes.py @@ -1,6 +1,6 @@ # shapes.py
#
-# A sample program showing how parse actions can convert parsed
+# A sample program showing how parse actions can convert parsed
# strings into a data type or object.
#
# Copyright 2012, Paul T. McGuire
@@ -13,7 +13,7 @@ class Shape(object): def area(self):
raise NotImplementedException()
-
+
def __str__(self):
return "<{}>: {}".format(self.__class__.__name__, self.__dict__)
|