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, 'C': lambda temp: temp,
'F': lambda temp: (temp * 9 / 5) + 32, 'F': lambda temp: (temp * 9 / 5) + 32,
'K': lambda temp: temp + 273.15, 'K': lambda temp: temp + 273.15,
} }
# Note: there are also unicode characters for units: ℃, ℉ and # Note: there are also unicode characters for units: ℃, ℉ and
temp_units = { temp_units = {
'C': '°C', 'C': '°C',
'F': '°F', 'F': '°F',
'K': 'K', 'K': 'K',
} }
class WeatherSegment(ThreadedSegment): class WeatherSegment(ThreadedSegment):

View File

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