# HG changeset patch # User Sean Farley # Date 1429745233 25200 # Node ID 29a0bf3e6d3bc648b575d20796358038a2525fad # Parent 5322f12e64edc84c5b44174c93113c6d41e83645 util: flake8 cleanup diff --git a/hggit/util.py b/hggit/util.py --- a/hggit/util.py +++ b/hggit/util.py @@ -11,22 +11,24 @@ """Fills OrderedDict with hgsub file content passed as list of lines""" rv = OrderedDict() for l in lines: - ls = l.strip(); - if not ls or ls[0] == '#': continue + ls = l.strip() + if not ls or ls[0] == '#': + continue name, value = l.split('=', 1) rv[name.strip()] = value.strip() return rv def serialize_hgsub(data): """Produces a string from OrderedDict hgsub content""" - return ''.join(['%s = %s\n' % (n,v) for n,v in data.iteritems()]) + return ''.join(['%s = %s\n' % (n, v) for n, v in data.iteritems()]) def parse_hgsubstate(lines): """Fills OrderedDict with hgsubtate file content passed as list of lines""" rv = OrderedDict() for l in lines: - ls = l.strip(); - if not ls or ls[0] == '#': continue + ls = l.strip() + if not ls or ls[0] == '#': + continue value, name = l.split(' ', 1) rv[name.strip()] = value.strip() return rv @@ -36,7 +38,7 @@ return ''.join(['%s %s\n' % (data[n], n) for n in sorted(data)]) def transform_notgit(f): - '''use as a decorator around functions and methods that call into dulwich''' + '''use as a decorator around functions that call into dulwich''' def inner(*args, **kwargs): try: return f(*args, **kwargs)