Skip to content
Snippets Groups Projects
Verified Commit 94dd80f3 authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

remove ruff format from precommit due to inconsistent behaviour

parent d8040cce
No related branches found
No related tags found
1 merge request!165router creation flow update
......@@ -10,8 +10,3 @@ repos:
- --preview
- --ignore=PLR0917,PLR0914
- --extend-exclude=test/*
# Run the formatter.
- id: ruff-format
args:
- --preview
- --exclude=test/*
......@@ -3,11 +3,13 @@
from orchestrator.services.subscriptions import WF_USABLE_MAP
from orchestrator.workflows import LazyWorkflowInstance
WF_USABLE_MAP.update({
"redeploy_base_config": ["provisioning", "active"],
"update_ibgp_mesh": ["provisioning", "active"],
"activate_router": ["provisioning"],
})
WF_USABLE_MAP.update(
{
"redeploy_base_config": ["provisioning", "active"],
"update_ibgp_mesh": ["provisioning", "active"],
"activate_router": ["provisioning"],
}
)
LazyWorkflowInstance("gso.workflows.iptrunk.create_iptrunk", "create_iptrunk")
LazyWorkflowInstance("gso.workflows.iptrunk.deploy_twamp", "deploy_twamp")
......
......@@ -15,7 +15,7 @@ def _initial_input_form(subscription_id: UUIDstr) -> FormGenerator:
router = Router.from_subscription(subscription_id)
class ActivateRouterForm(FormPage):
info_label: Label = "Start approval process for router activation." # noqa: ignore[assignment]
info_label: Label = "Start approval process for router activation." # type:ignore[assignment]
tt_number: str
user_input = yield ActivateRouterForm
......
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