Fix PEP8: E201 whitespace after '{'
This commit is contained in:
@@ -95,7 +95,9 @@ def initial_setup(server):
|
||||
|
||||
if browser_driver == 'chrome':
|
||||
desired_capabilities = DesiredCapabilities.CHROME
|
||||
desired_capabilities['loggingPrefs'] = { 'browser':'ALL' }
|
||||
desired_capabilities['loggingPrefs'] = {
|
||||
'browser': 'ALL',
|
||||
}
|
||||
elif browser_driver == 'firefox':
|
||||
desired_capabilities = DesiredCapabilities.FIREFOX
|
||||
else:
|
||||
|
||||
@@ -25,7 +25,9 @@ class StubHttpServiceTest(unittest.TestCase):
|
||||
'test_empty': '',
|
||||
'test_int': 12345,
|
||||
'test_float': 123.45,
|
||||
'test_dict': { 'test_key': 'test_val' },
|
||||
'test_dict': {
|
||||
'test_key': 'test_val',
|
||||
},
|
||||
'test_empty_dict': {},
|
||||
'test_unicode': u'\u2603 the snowman',
|
||||
'test_none': None,
|
||||
|
||||
Reference in New Issue
Block a user