Skip to content

Commit

Permalink
Reformat file with black
Browse files Browse the repository at this point in the history
  • Loading branch information
deajan committed Jan 1, 2024
1 parent d921bbb commit 5888798
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ofunctions/misc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ def _replace_in_iterable(key, _src):
elif isinstance(original, Callable):
if callable_wants_key:
if callable_wants_root_key:
_src = original("{}.{}".format(_root_key, key) if _root_key else key, _src)
_src = original(
"{}.{}".format(_root_key, key) if _root_key else key, _src
)
else:
_src = original(key, _src)
else:
Expand Down

0 comments on commit 5888798

Please sign in to comment.