diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-06 11:19:11 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-06 11:19:11 -0800 |
commit | ffa8b4d5fedad8f9c1fdbd05a2da8fb2679168af (patch) | |
tree | 2fbdebad320ab2be9ddccee91004d2356dd4b4e1 | |
parent | 50f233efe4d37a20b4372cf21f1c462914ea5d40 (diff) | |
download | cryptography-ffa8b4d5fedad8f9c1fdbd05a2da8fb2679168af.tar.gz cryptography-ffa8b4d5fedad8f9c1fdbd05a2da8fb2679168af.tar.bz2 cryptography-ffa8b4d5fedad8f9c1fdbd05a2da8fb2679168af.zip |
flake8
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -51,7 +51,9 @@ class cffi_build(build): padding._ffi.verifier.get_extension() ] if Binding.is_available(): - self.distribution.ext_modules.append(Binding().ffi.verifier.get_extension()) + self.distribution.ext_modules.append( + Binding().ffi.verifier.get_extension() + ) build.finalize_options(self) |