From 474577becaad269af5099ec3aebe78ffcc65175d Mon Sep 17 00:00:00 2001 From: Aviv Palivoda Date: Fri, 22 Mar 2019 16:23:15 +0200 Subject: [PATCH] Fix format --- vm/src/import.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/vm/src/import.rs b/vm/src/import.rs index 8e8fe33849..ed5a6d094b 100644 --- a/vm/src/import.rs +++ b/vm/src/import.rs @@ -55,11 +55,7 @@ pub fn import_module(vm: &VirtualMachine, current_path: PathBuf, module_name: &s Ok(module) } -fn find_source( - vm: &VirtualMachine, - current_path: PathBuf, - name: &str, -) -> Result { +fn find_source(vm: &VirtualMachine, current_path: PathBuf, name: &str) -> Result { let sys_path = vm.get_attribute(vm.sys_module.clone(), "path").unwrap(); let mut paths: Vec = objsequence::get_elements(&sys_path) .iter()