chore: Remove git stash markup

This commit is contained in:
Daniel S. 2019-08-31 22:17:42 +02:00
parent 2e604a4281
commit 81da254419
6 changed files with 9 additions and 135 deletions

5
rust/.vscode/arduino.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"board": "esp8266:esp8266:huzzah",
"configuration": "CpuFrequency=80,FlashSize=4M1M,LwIPVariant=v2mss536,Debug=Disabled,DebugLevel=None____,UploadSpeed=115200",
"port": "COM3"
}

View file

@ -100,9 +100,7 @@ pub fn _ed_lrr(_py: Python, m: &PyModule) -> PyResult<()> {
}
Ok(ret.to_object(py))
}
Err(e) => {
Err(PyErr::new::<ValueError, _>(e))
}
Err(e) => Err(PyErr::new::<ValueError, _>(e)),
}
}