Skip to content

Commit

Permalink
Added CI failure fixes
Browse files Browse the repository at this point in the history
* Removed lints errors
* Fixed 3.4 failures
  • Loading branch information
6ug committed Oct 27, 2018
1 parent 2d571e1 commit 8983407
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion py_ecc/bn128/bn128_curve.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
FQ2,
FQ12,
)
from typing import Tuple, Union
from typing import Tuple


curve_order = 21888242871839275222246405745257275088548364400416034343698204186575808495617
Expand Down
1 change: 0 additions & 1 deletion py_ecc/bn128/bn128_field_elements.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import absolute_import

import sys
from typing import NewType, Tuple
from py_ecc.types import Point2D, Point3D

sys.setrecursionlimit(10000)
Expand Down
1 change: 0 additions & 1 deletion py_ecc/secp256k1/secp256k1.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import hashlib
import hmac
import sys
from typing import NewType, Tuple, Union
from py_ecc.types import Point2D, Point3D

if sys.version_info.major == 2:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
extras_require = {
'test': [
"pytest===3.2.2",
"pytest-xdist"
"pytest-xdist",
"mypy==0.641"
],
'lint': [
"flake8==3.4.1"
Expand Down

0 comments on commit 8983407

Please sign in to comment.