-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from pipermerriam/piper/cleanup-linting-recurs…
…ion-and-mutability Piper/cleanup linting recursion and mutability
- Loading branch information
Showing
8 changed files
with
126 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
from __future__ import absolute_import | ||
import sys | ||
|
||
from . import secp256k1 # noqa: F401 | ||
from . import bn128 # noqa: F401 | ||
from . import optimized_bn128 # noqa: F401 | ||
from . import bls12_381 # noqa: F401 | ||
from . import optimized_bls12_381 # noqa: F401 | ||
|
||
sys.setrecursionlimit(max(10000, sys.getrecursionlimit())) | ||
|
||
|
||
from py_ecc import secp256k1 # noqa: F401 | ||
from py_ecc import bn128 # noqa: F401 | ||
from py_ecc import optimized_bn128 # noqa: F401 | ||
from py_ecc import bls12_381 # noqa: F401 | ||
from py_ecc import optimized_bls12_381 # noqa: F401 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.