Change indentation of closing }, ], ) and combinations of them

This commit is contained in:
ZyX 2013-03-25 19:04:18 +04:00
parent ada5dede25
commit 27c9a05782
7 changed files with 62 additions and 62 deletions

View File

@ -340,14 +340,14 @@ temp_conversions = {
'C': lambda temp: temp,
'F': lambda temp: (temp * 9 / 5) + 32,
'K': lambda temp: temp + 273.15,
}
}
# Note: there are also unicode characters for units: ℃, ℉ and
temp_units = {
'C': '°C',
'F': '°F',
'K': 'K',
}
}
class WeatherSegment(ThreadedSegment):

View File

@ -38,4 +38,4 @@ setup(
],
},
test_suite='tests' if not old_python else None,
)
)