Skip to content

Commit

Permalink
fix(defaults): add types for options
Browse files Browse the repository at this point in the history
  • Loading branch information
rndmh3ro committed Oct 10, 2024
1 parent 07768ab commit 8c7726f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aar_doc/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def generate_commented_defaults(
defaults_manager = RoleDefaultsManager(overwrite_duplicate_defaults)

for entry_point in argument_spec_data:
options = argument_spec_data.get(entry_point, {}).get("options")
options: dict[str, Any] = argument_spec_data.get(entry_point, {}).get("options")
if not options:
continue
for name, spec in options.items():
Expand Down

0 comments on commit 8c7726f

Please sign in to comment.