PEP8 formatting.

This commit is contained in:
Jakob Stoklund Olesen
2016-05-12 13:37:03 -07:00
parent 6e17d229d0
commit ea46a17f56
8 changed files with 299 additions and 232 deletions

View File

@@ -9,6 +9,7 @@ source code.
import sys
import os
class Formatter(object):
"""
Source code formatter class.
@@ -70,7 +71,7 @@ class Formatter(object):
self.after = after
def __enter__(self):
self.fmt.indent_push();
self.fmt.indent_push()
def __exit__(self, t, v, tb):
self.fmt.indent_pop()