From 68892fb4e202524cce6efdf53f9f6d59cbbf5a45 Mon Sep 17 00:00:00 2001 From: yodalee Date: Sun, 25 Nov 2018 22:13:26 +0800 Subject: [PATCH] fix rustfmt --- vm/src/stdlib/math.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/src/stdlib/math.rs b/vm/src/stdlib/math.rs index 496453b5a..0cc800b12 100644 --- a/vm/src/stdlib/math.rs +++ b/vm/src/stdlib/math.rs @@ -8,9 +8,9 @@ use super::super::pyobject::{ DictProtocol, PyContext, PyFuncArgs, PyObjectRef, PyResult, TypeProtocol, }; use super::super::VirtualMachine; -use std; use statrs::function::erf::{erf, erfc}; use statrs::function::gamma::{gamma, ln_gamma}; +use std; // Helper macro: macro_rules! make_math_func {