From 34098bec27c27e878c6fbd398b3af50d282c5442 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Sat, 14 Mar 2015 15:54:35 -0600 Subject: [PATCH] PEP8 fixes --- pytools/__init__.py | 8 +++++--- setup.cfg | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pytools/__init__.py b/pytools/__init__.py index 3516d6f..b4d0214 100644 --- a/pytools/__init__.py +++ b/pytools/__init__.py @@ -141,7 +141,7 @@ class RecordWithoutPickling(object): kwargs.update(valuedict) for key, value in six.iteritems(kwargs): - if not key in exclude: + if key not in exclude: fields.add(key) setattr(self, key, value) @@ -556,7 +556,9 @@ def memoize_method_with_uncached(uncached_args=[], uncached_kwargs=set()): for name in uncached_kwargs: cache_kwargs.pop(name, None) - key = (_HasKwargs, frozenset(six.iteritems(cache_kwargs))) + cache_args + key = ( + (_HasKwargs, frozenset(six.iteritems(cache_kwargs))) + + cache_args) else: key = cache_args @@ -1571,7 +1573,7 @@ def invoke_editor(s, filename="edit.txt", descr="the file"): p = Popen([os.environ["EDITOR"], full_name]) os.waitpid(p.pid, 0)[1] else: - print("(Set the EDITOR environment variable to be " \ + print("(Set the EDITOR environment variable to be " "dropped directly into an editor next time.)") input("Edit %s at %s now, then hit [Enter]:" % (descr, full_name)) diff --git a/setup.cfg b/setup.cfg index a3d65d8..e7adadc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [flake8] -ignore = E126,E127,E128,E123,E226,E241,E242 +ignore = E126,E127,E128,E123,E226,E241,E242,E265 max-line-length=85 [wheel] universal = 1 -- GitLab