Skip to content
Snippets Groups Projects
Commit dece3049 authored by rahix's avatar rahix
Browse files

docs(simple_menu): Fix autodoc errors

When sphinx autodoc imports this module, the global code trying to fill
in the LONG_PRESS_MS and RETRIGGER_MS values will fail to run leading to
exceptions and autodoc not generating any documentation for this module.

Fixes: #230
parent 9a70773d
No related branches found
No related tags found
1 merge request!448Documentation Fixes
......@@ -6,21 +6,20 @@ import time
import config
TIMEOUT = 0x100
""":py:func:`~simple_menu.button_events` timeout marker."""
LONG_PRESS_MS = 1000
RETRIGGER_MS = 250
try:
LONG_PRESS_MS = int(config.get_string("long_press_ms"))
except OSError:
except Exception:
pass
try:
RETRIGGER_MS = int(config.get_string("retrigger_ms"))
except OSError:
except Exception:
pass
""":py:func:`~simple_menu.button_events` timeout marker."""
def button_events(timeout=None, long_press_ms=LONG_PRESS_MS, retrigger_ms=RETRIGGER_MS):
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment