From de8326d00dffdb500c02839a98330b869c2457f3 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 22 Dec 2018 09:28:48 -0800 Subject: Trim trailing white space throughout the project Many editors clean up trailing white space on save. By removing it all in one go, it helps keep future diffs cleaner by avoiding spurious white space changes on unrelated lines. --- examples/shapes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/shapes.py') 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__) -- cgit v1.2.1