apply PEP

This commit is contained in:
Vinta 2014-07-03 14:30:24 +08:00
parent 6cdb449271
commit a96f889892
1 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,5 @@
# coding: utf-8
"""
The approach taken is explained below. I decided to do it simply.
Initially I was considering parsing the data into some sort of
@ -11,6 +13,7 @@
and flattening the end structure into a list of lines. Revision 2 maybe ^.^.
"""
def main():
# First, we load the current README into memory as an array of lines
with open('README.md', 'r') as read_me_file: