Skip to content

Commit 6523e3f

Browse files
Explicit export (#236)
1 parent 7cb02b9 commit 6523e3f

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

src/evdev/__init__.py

+22-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,25 @@
22
# Gather everything into a single, convenient namespace.
33
# --------------------------------------------------------------------------
44

5-
from . import ecodes, ff
6-
from .device import AbsInfo, DeviceInfo, EvdevError, InputDevice
7-
from .events import AbsEvent, InputEvent, KeyEvent, RelEvent, SynEvent, event_factory
8-
from .uinput import UInput, UInputError
9-
from .util import categorize, list_devices, resolve_ecodes, resolve_ecodes_dict
5+
from . import ecodes as ecodes, ff as ff
6+
from .device import (
7+
AbsInfo as AbsInfo,
8+
DeviceInfo as DeviceInfo,
9+
EvdevError as EvdevError,
10+
InputDevice as InputDevice,
11+
)
12+
from .events import (
13+
AbsEvent as AbsEvent,
14+
InputEvent as InputEvent,
15+
KeyEvent as KeyEvent,
16+
RelEvent as RelEvent,
17+
SynEvent as SynEvent,
18+
event_factory as event_factory,
19+
)
20+
from .uinput import UInput as UInput, UInputError as UInputError
21+
from .util import (
22+
categorize as categorize,
23+
list_devices as list_devices,
24+
resolve_ecodes as resolve_ecodes,
25+
resolve_ecodes_dict as resolve_ecodes_dict,
26+
)

0 commit comments

Comments
 (0)