Skip to content

Commit

Permalink
Ensure paramdoc handles allow_refs, nested_refs and rx (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Jan 23, 2025
1 parent bc827c1 commit 599521c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nbsite/paramdoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
IGNORED_ATTRS = [
'precedence', 'check_on_set', 'instantiate', 'pickle_default_value',
'watchers', 'compute_default_fn', 'doc', 'owner', 'per_instance',
'is_instance', 'name', 'time_fn', 'time_dependent'
'is_instance', 'name', 'time_fn', 'time_dependent', 'rx'
]

# Default parameter attribute values (value not shown if it matches defaults)
DEFAULT_VALUES = {'allow_None': False, 'readonly': False, 'constant': False}
DEFAULT_VALUES = {'allow_None': False, 'readonly': False, 'constant': False, 'allow_refs': False, 'nested_refs': False}


def param_formatter(app, what, name, obj, options, lines):
Expand Down

0 comments on commit 599521c

Please sign in to comment.