From 4145e5dd6acff28052bd361d10d24da2d19b6a13 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Mon, 19 Jun 2017 15:59:39 -0400 Subject: [PATCH] Add missing "self" argument to Serial.reset_input_buffer() Signed-off-by: Anna Schumaker --- simulator/serial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/serial.py b/simulator/serial.py index 5ad2b6c..5307166 100644 --- a/simulator/serial.py +++ b/simulator/serial.py @@ -36,5 +36,5 @@ class Serial: return "".encode() raise Exception("Test Serial Exception") - def reset_input_buffer(): + def reset_input_buffer(self): pass