summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--swiftclient/client.py4
-rw-r--r--swiftclient/service.py4
-rw-r--r--tox.ini5
3 files changed, 10 insertions, 3 deletions
diff --git a/swiftclient/client.py b/swiftclient/client.py
index 6a2b43b..4406689 100644
--- a/swiftclient/client.py
+++ b/swiftclient/client.py
@@ -1885,7 +1885,9 @@ class Connection(object):
reset = getattr(contents, 'reset', None)
if tell and seek:
orig_pos = tell()
- reset_func = lambda *a, **k: seek(orig_pos)
+
+ def reset_func(*a, **kw):
+ seek(orig_pos)
elif reset:
reset_func = reset
return self._retry(reset_func, put_object, container, obj, contents,
diff --git a/swiftclient/service.py b/swiftclient/service.py
index 71c36ec..8f3648e 100644
--- a/swiftclient/service.py
+++ b/swiftclient/service.py
@@ -451,7 +451,9 @@ class SwiftService(object):
**_default_local_options
)
process_options(self._options)
- create_connection = lambda: get_conn(self._options)
+
+ def create_connection():
+ return get_conn(self._options)
self.thread_manager = MultiThreadingManager(
create_connection,
segment_threads=self._options['segment_threads'],
diff --git a/tox.ini b/tox.ini
index 613e3f8..4635491 100644
--- a/tox.ini
+++ b/tox.ini
@@ -77,7 +77,10 @@ commands=
# H403: multi line docstrings should end on a new line
# H404: multi line docstring should start without a leading new line
# H405: multi line docstring summary not separated with an empty line
-ignore = E731,H101,H301,H306,H401,H403,H404,H405
+ignore = H101,H301,H306,H401,H403,H404,H405
+# H106: Don’t put vim configuration in source files
+# H203: Use assertIs(Not)None to check for None
+enable-extensions=H106,H203
show-source = True
exclude = .venv,.tox,dist,doc,*egg