From c198c139238e9737a18514abc94a7876d53d473b Mon Sep 17 00:00:00 2001 From: mmagician Date: Sun, 14 May 2023 10:56:45 -0600 Subject: [PATCH] reorder imports --- src/groups/curves/twisted_edwards/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/groups/curves/twisted_edwards/mod.rs b/src/groups/curves/twisted_edwards/mod.rs index d59b1eb7..a95aeacb 100644 --- a/src/groups/curves/twisted_edwards/mod.rs +++ b/src/groups/curves/twisted_edwards/mod.rs @@ -3,7 +3,7 @@ use ark_ec::{ Affine as TEAffine, MontCurveConfig as MontgomeryModelParameter, Projective as TEProjective, TECurveConfig as TEModelParameters, }, - AffineRepr, CurveGroup, AdditiveGroup, + AdditiveGroup, AffineRepr, CurveGroup, }; use ark_ff::{BigInteger, BitIteratorBE, Field, One, PrimeField, Zero}; use ark_relations::r1cs::{ConstraintSystemRef, Namespace, SynthesisError};