Skip to content

Commit

Permalink
Update codespell in precommit to version 2.3.0 (flyteorg#2630)
Browse files Browse the repository at this point in the history
  • Loading branch information
eapolinario authored and mao3267 committed Aug 1, 2024
1 parent 1a7496f commit f50bbe7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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

0 comments on commit f50bbe7

Please sign in to comment.