Code clarity fixes

autopep8 -ir -j2 --select=E303,E125
Diff checked manually.
This commit is contained in:
Laurent Bachelier 2013-03-15 19:54:17 +01:00
commit c21d1f7925
37 changed files with 6 additions and 59 deletions

View file

@ -46,7 +46,7 @@ class SachsenLevelBackend(BaseBackend, ICapGauge):
lowpattern = pattern.lower()
for gauge in self.browser.get_rivers_list():
if lowpattern in gauge.name.lower()\
or lowpattern in gauge.object.lower():
or lowpattern in gauge.object.lower():
yield gauge
def _get_gauge_by_id(self, id):