Changes between Version 1 and Version 2 of Ticket #36941


Ignore:
Timestamp:
Feb 23, 2026, 4:41:59 AM (3 hours ago)
Author:
Hristo Trendafilov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36941 – Description

    v1 v2  
    3737    for _key, value in kwargs.items():
    3838        # Look up the key name in context if the flag is True
    39         key = context.get(_key, key) if resolve_keys else _key
     39        key = context.get(_key) if resolve_keys else _key
    4040       
    4141        if key is None:
Back to Top