Merge "lint: Up-rev hacking"

This commit is contained in:
Zuul 2024-02-26 06:51:21 +00:00 committed by Gerrit Code Review
commit 0e8f64f2d3
6 changed files with 11 additions and 10 deletions

View File

@ -754,7 +754,7 @@ def st_stat(parser, args, output_manager, return_parser=False):
items, headers, output_manager
)
else:
raise(stat_result["error"])
raise stat_result["error"]
else:
output_manager.error(
'Usage: %s stat %s\n%s', BASENAME,
@ -768,7 +768,7 @@ st_post_options = '''[--read-acl <acl>] [--write-acl <acl>] [--sync-to <sync-to>
[--sync-key <sync-key>] [--meta <name:value>]
[--header <header>]
[<container> [<object>]]
'''
''' # noqa
st_post_help = '''
Updates meta information for the account, container, or object.
@ -864,7 +864,7 @@ def st_post(parser, args, output_manager, return_parser=False):
else:
result = swift.post(container=container)
if not result["success"]:
raise(result["error"])
raise result["error"]
except SwiftError as e:
output_manager.error(e.value)
@ -1520,7 +1520,7 @@ st_bash_completion_help = '''Retrieve command specific flags used by bash_comple
Optional positional arguments:
<command> Swift client command to filter the flags by.
'''.strip('\n')
'''.strip('\n') # noqa
st_bash_completion_options = '''[command]

View File

@ -1,4 +1,4 @@
hacking>=3.2.0,<3.3.0 # Apache-2.0
hacking>=3.2.0,<6.2.0 # Apache-2.0
coverage!=4.4,>=4.0 # Apache-2.0
keystoneauth1>=3.4.0 # Apache-2.0

View File

@ -1330,7 +1330,7 @@ class TestService(unittest.TestCase):
options)
responses = [x for x in resp_iter]
for resp in responses:
self.assertFalse('error' in resp)
self.assertNotIn('error', resp)
self.assertTrue(resp['success'])
self.assertEqual(5, len(responses))
container_resp, segment_container_resp = responses[0:2]

View File

@ -711,7 +711,7 @@ class TestShell(unittest.TestCase):
@mock.patch('swiftclient.service.Connection')
def test_download_shuffle(self, connection, mock_shuffle):
# Test that the container and object lists are shuffled
mock_shuffle.side_effect = lambda l: l
mock_shuffle.side_effect = lambda to_shuffle: to_shuffle
connection.return_value.get_object.return_value = [
{'content-type': 'text/plain',
'etag': EMPTY_ETAG},

View File

@ -2000,7 +2000,7 @@ class TestConnection(MockHttpTest):
'authurl': 'http://www.test.com',
'tenant_name': 'atenant'}
conn = c.Connection(**args)
self.assertEqual(type(conn), c.Connection)
self.assertIsInstance(conn, c.Connection)
def test_instance_kwargs_token(self):
args = {'preauthtoken': 'atoken123',
@ -3056,7 +3056,7 @@ class TestCloseConnection(MockHttpTest):
conn = c.Connection(url, 'asdf', 'asdf')
self.assertIsNone(conn.http_conn)
conn.http_conn = c.http_connection(url)
self.assertEqual(type(conn.http_conn), tuple)
self.assertIsInstance(conn.http_conn, tuple)
self.assertEqual(len(conn.http_conn), 2)
http_conn_obj = conn.http_conn[1]
self.assertIsInstance(http_conn_obj, c.HTTPConnection)

View File

@ -69,7 +69,8 @@ commands=
# H404: multi line docstring should start without a leading new line
# H405: multi line docstring summary not separated with an empty line
# W504: line break after binary operator
ignore = H101,H301,H306,H401,H403,H404,H405,W504
# F811: Redefinition of unused name from line n
ignore = H101,H301,H306,H401,H403,H404,H405,W504,F811
# H106: Dont put vim configuration in source files
# H203: Use assertIs(Not)None to check for None
enable-extensions=H106,H203