Skip to content

Commit

Permalink
fix: flake8 too long lines, removed old config
Browse files Browse the repository at this point in the history
  • Loading branch information
Lasica committed Dec 8, 2023
1 parent 3b0c821 commit 98ecd6f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 17 deletions.
15 changes: 0 additions & 15 deletions .github/pre-commit-config.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion kedro_vertexai/context_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ def config(self) -> PluginConfig:
)
else:
raise ValueError(
"Missing vertexai.yml files in configuration. Make sure that you configure your project first"
"Missing vertexai.yml files in configuration. "
"Make sure that you configure your project first"
)
return PluginConfig.parse_obj(vertex_conf)

Expand Down
3 changes: 2 additions & 1 deletion kedro_vertexai/grouping.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def group(self, node_dependencies: PipelineDependenciesDict) -> Grouping:
]
if len(grouping_tags) > 1:
raise GroupingException(
f"Inconsistent tagging for grouping, multiple tags with grouping prefix found in node {name}"
"Inconsistent tagging for grouping, multiple tags"
f"with grouping prefix found in node {name}"
)
# 1 or 0 loop
for tag in grouping_tags:
Expand Down

0 comments on commit 98ecd6f

Please sign in to comment.