Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Dec 6, 2023
1 parent 62fc9c5 commit ab12a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/core/langchain_core/runnables/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ async def ainvoke(

class Context:
@staticmethod
def create_scope(pefix: str, /) -> "PrefixContext":
return PrefixContext(prefix=pefix)
def create_scope(scope: str, /) -> "PrefixContext":
return PrefixContext(prefix=scope)

@staticmethod
def getter(key: Union[str, List[str]], /) -> ContextGet:
Expand Down

0 comments on commit ab12a45

Please sign in to comment.