summaryrefslogtreecommitdiff
path: root/examples/shapes.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shapes.py')
-rw-r--r--examples/shapes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shapes.py b/examples/shapes.py
index 73ed334..2df8572 100644
--- a/examples/shapes.py
+++ b/examples/shapes.py
@@ -15,7 +15,7 @@ class Shape(object):
raise NotImplementedException()
def __str__(self):
- return "<{}>: {}".format(self.__class__.__name__, self.__dict__)
+ return "<{0}>: {1}".format(self.__class__.__name__, self.__dict__)
class Square(Shape):
def area(self):