Skip to content

Commit fe88148

Browse files
committed
type hints for _get_custom_options()
1 parent 948f8d0 commit fe88148

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • canopen/objectdictionary

canopen/objectdictionary/eds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def _revert_variable(var_type, value):
274274
}
275275

276276

277-
def _get_custom_options(eds, section):
277+
def _get_custom_options(eds: RawConfigParser, section: str) -> dict[str, str]:
278278
custom_options = {}
279279
for option, value in eds.items(section):
280280
if option not in _STANDARD_OPTIONS:

0 commit comments

Comments
 (0)