From a2335a3468f3dc42ca57607283603e65c71b0782 Mon Sep 17 00:00:00 2001 From: castis Date: Sun, 21 Jan 2018 20:47:08 -0500 Subject: [PATCH] Removing unnecessary code --- docs/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 83981e0..da8b272 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -352,7 +352,7 @@ Create ``uinput`` device with capabilities of another device >>> from evdev import UInput, InputDevice - >>> mouse = InputDevice('/dev/input/event1')from evdev import UInput, InputDevice + >>> mouse = InputDevice('/dev/input/event1') >>> keybd = '/dev/input/event2' >>> ui = UInput.from_device(mouse, keybd, name='keyboard-mouse-device')