From 004b3ad14d691311d6dbb48aa05901e01d681ea2 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 15 Dec 2014 11:19:05 -0800 Subject: two flake8 fixes --- src/cryptography/hazmat/primitives/serialization.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/cryptography/hazmat/primitives/serialization.py b/src/cryptography/hazmat/primitives/serialization.py index 858ec043..0dbbc85c 100644 --- a/src/cryptography/hazmat/primitives/serialization.py +++ b/src/cryptography/hazmat/primitives/serialization.py @@ -6,7 +6,6 @@ from __future__ import absolute_import, division, print_function import base64 import struct -import sys import warnings from cryptography import utils @@ -99,7 +98,6 @@ def _read_next_mpint(data): return _int_from_bytes(mpint_data, byteorder='big', signed=False), rest - if hasattr(int, "from_bytes"): _int_from_bytes = int.from_bytes else: -- cgit v1.2.3