Skip to content

Commit

Permalink
fix(typos): append_processor closure variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
CNSeniorious000 committed Feb 6, 2025
1 parent bb0488f commit 98425eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/promplate/chain/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@


def appender(to_append: list[T]) -> Callable[[T], T]:
def append_processer(func: T) -> T:
def append_processor(func: T) -> T:
to_append.append(func)

return func

return append_processer
return append_processor


def is_positional_parameter(p: Parameter):
Expand Down

0 comments on commit 98425eb

Please sign in to comment.