Skip to content
Snippets Groups Projects
Commit 7d6a258a authored by Michael Loukeris's avatar Michael Loukeris
Browse files

fix #11: Align Black and Flake8 line-length to 119 to prevent pre-commit failures

parent b03923e5
No related branches found
No related tags found
1 merge request!1CostMetric Code Implemented
......@@ -42,7 +42,7 @@ scripts.hypertool = "hypertool.cli:main"
[tool.black]
line-length = 80
line-length = 119
target-version = [ "py311" ]
[tool.isort]
......
[flake8]
max-line-length = 119
......@@ -46,9 +46,7 @@ def start_daemon() -> None:
try:
config.load_incluster_config()
except ConfigException:
raise exceptions.HyperToolKubernetesError(
"Error loading in-cluster config"
)
raise exceptions.HyperToolKubernetesError("Error loading in-cluster config")
v1 = client.CoreV1Api()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment