Skip to content

Commit

Permalink
FIX: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jan 6, 2025
1 parent 81b4e08 commit 5ac24d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numpydoc/tests/test_docscrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -1596,8 +1596,8 @@ def __init__(self, a, b):
self.numpydoc_validation_overrides = dict()

xref_aliases_complete = deepcopy(DEFAULT_LINKS)
for key in xref_aliases:
xref_aliases_complete[key] = xref_aliases[key]
for key, val in xref_aliases.items():
xref_aliases_complete[key] = val
config = Config(xref_aliases, xref_aliases_complete)
app = namedtuple("config", "config")(config)
update_config(app)
Expand Down

0 comments on commit 5ac24d6

Please sign in to comment.