diff --git a/conf.py b/conf.py index 7120fa3f00a35..6c30a43abb1f1 100644 --- a/conf.py +++ b/conf.py @@ -277,7 +277,6 @@ def autoapi_prepare_jinja_env(jinja_env): import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme' -html_theme_path = [sphinx_rtd_theme.get_html_theme_path(), '.'] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/shared-bindings/alarm/__init__.c b/shared-bindings/alarm/__init__.c index 7cdc2f7750e57..e0ed0b9a396f6 100644 --- a/shared-bindings/alarm/__init__.c +++ b/shared-bindings/alarm/__init__.c @@ -196,7 +196,7 @@ static mp_obj_t alarm_exit_and_deep_sleep_until_alarms(size_t n_args, const mp_o common_hal_alarm_set_deep_sleep_alarms(n_args, pos_args, num_dios, dios_array); // Raise an exception, which will be processed in main.c. - mp_raise_type_arg(&mp_type_DeepSleepRequest, NULL); + mp_raise_type(&mp_type_DeepSleepRequest); // Doesn't get here. return mp_const_none;