Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update codespell in precommit to version 2.3.0 #2630

Merged
merged 2 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repos:
hooks:
- id: check_pdb_hook
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/design/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Overview
########

Flytekit is comprised of a handful of different logical components, each discusssed in greater detail below:
Flytekit is comprised of a handful of different logical components, each discussed in greater detail below:

* :ref:`Models Files <design-models>` - These are almost Protobuf generated files.
* :ref:`Authoring <design-authoring>` - This provides the core Flyte authoring experiences, allowing users to write tasks, workflows, and launch plans.
Expand Down
4 changes: 2 additions & 2 deletions flytekit/clients/auth_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def get_proxy_authenticator(cfg: PlatformConfig) -> Authenticator:
def upgrade_channel_to_proxy_authenticated(cfg: PlatformConfig, in_channel: grpc.Channel) -> grpc.Channel:
"""
If activated in the platform config, given a grpc.Channel, preferably a secure channel, it returns a composed
channel that uses Interceptor to perform authentication with a proxy infront of Flyte
channel that uses Interceptor to perform authentication with a proxy in front of Flyte
:param cfg: PlatformConfig
:param in_channel: grpc.Channel Precreated channel
:return: grpc.Channel. New composite channel
Expand Down Expand Up @@ -275,7 +275,7 @@ def send(self, request, *args, **kwargs):
def upgrade_session_to_proxy_authenticated(cfg: PlatformConfig, session: requests.Session) -> requests.Session:
"""
Given a requests.Session, it returns a new session that uses a custom HTTPAdapter to
perform authentication with a proxy infront of Flyte
perform authentication with a proxy in front of Flyte

:param cfg: PlatformConfig
:param session: requests.Session Precreated session
Expand Down
2 changes: 1 addition & 1 deletion flytekit/models/core/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class BranchNode(_common.FlyteIdlEntity):
def __init__(self, if_else: IfElseBlock):
"""
BranchNode is a special node that alter the flow of the workflow graph. It allows the control flow to branch at
runtime based on a series of conditions that get evaluated on various parameters (e.g. inputs, primtives).
runtime based on a series of conditions that get evaluated on various parameters (e.g. inputs, primitives).

:param IfElseBlock if_else:
"""
Expand Down
Loading