Skip to content

Commit

Permalink
[pipes] fix a few typos (#16861)
Browse files Browse the repository at this point in the history
## How I Tested These Changes

eyes
  • Loading branch information
alangenfeld authored Sep 27, 2023
1 parent 1084d20 commit 9960687
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python_modules/dagster-pipes/dagster_pipes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ def set(cls, context: "PipesContext") -> None:
def get(cls) -> "PipesContext":
if cls._instance is None:
raise Exception(
"ExtContext has not been initialized. You must call `init_dagster_ext()`."
"ExtContext has not been initialized. You must call `init_dagster_pipes()`."
)
return cls._instance

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def run(
Extra values to pass along as part of the ext protocol.
context_injector (Optional[PipesContextInjector]):
Override the default ext protocol context injection.
message_Reader (Optional[PipesMessageReader]):
message_reader (Optional[PipesMessageReader]):
Override the default ext protocol message reader.
Yields:
Expand Down
2 changes: 1 addition & 1 deletion python_modules/libraries/dagster-k8s/dagster_k8s/pipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def run(
Extra values to pass along as part of the ext protocol.
context_injector (Optional[PipesContextInjector]):
Override the default ext protocol context injection.
message_Reader (Optional[PipesMessageReader]):
message_reader (Optional[PipesMessageReader]):
Override the default ext protocol message reader.
Yields:
Expand Down

0 comments on commit 9960687

Please sign in to comment.