Whitespace normalization.
diff --git a/Lib/test/test_scope.py b/Lib/test/test_scope.py
index 4bd8ed7..5df0328 100644
--- a/Lib/test/test_scope.py
+++ b/Lib/test/test_scope.py
@@ -388,7 +388,7 @@
 
 class Foo:
     count = 0
-    
+
     def __init__(self):
         Foo.count += 1
 
@@ -400,9 +400,8 @@
     def f2():
         return x
     f2()
-    
+
 for i in range(100):
     f1()
 
 verify(Foo.count == 0)
-