PEP8 imports (https://www.python.org/dev/peps/pep-0008/#imports). Remove unused import statements.

This commit is contained in:
Ryan Jarvis
2017-09-17 12:22:03 -07:00
parent b5fe4d9a7d
commit fa7e37aa4c
20 changed files with 75 additions and 62 deletions

View File

@@ -34,8 +34,9 @@
from __future__ import division
from .six import print_
from . import numbertheory
from .six import print_
class CurveFp( object ):
"""Elliptic Curve over the field of integers modulo a prime."""