Robsdedude

Results 40 issues of Robsdedude

Code restructuring: remove `Mode` enum and replaced with more generically behaving uinput devices. Exception is the mouse as it had a more complex interface (`moveEvent`, `updateParams` methods, and so on)....

Adding an option to `SteamController.run` to keep the daemon alive when the gamepad gets disconnected. Daemon will try to reconnect by polling every 2 seconds. This could be optimized by...

First of all I've changed the code to correct for the weird rotational offset on the d-touch-pad. Your code was aware of that issue but only for the case where...

To do: - [ ] test against https://github.com/neo4j-drivers/testkit/pull/502 - [ ] write unit tests

Depends on https://github.com/neo4j-drivers/testkit/pull/445

First of all: Thanks for the nice project! I've got the project running on a Raspberry Pi 3 B+ (so basically a toaster). This means that the consumer takes a...

Hi. I have a similar issue to https://github.com/PyCQA/isort/issues/1236, where my relative imports are ordered weirdly when using `force_sort_within_sections=true`, or `--force-sort-within-sections`/`--fss`. Expected output: ``` from .. import A, B from ..A...

Here is the minimal example is created: ```python import isort str_in = """# comment from foo import bar def main(): ... """ str_out = isort.code( str_in, lines_before_imports=1 ) with open("tmp2.py",...